Skip to main content
Solved

Copy record URL in bulk

  • March 2, 2022
  • 1 reply
  • 32 views

Forum|alt.badge.img+1

Hi all!

I’m looking for a way to copy airtable record URLs in bulk. In order to find a specific record’s URL I need to right-click it and select the option “Copy record’s URL”, but how do I do it when I need to copy the URLs of 1000+ records?

Best answer by kuovonne

Create a formula field that will represent the url for the record. Record urls take the form https://Airtable.com/base_id/table_id/record_id, You can get the base_id and table_id from your browser. You can get the record ID from the formula function RECORD_ID()

The formula will look something like this

"https://appXXXXXXXXXXXXXX/tblXXXXXXXXXXXXXX/" & RECORD_ID()

Then you can copy in bulk from the formula result.

1 reply

kuovonne
Forum|alt.badge.img+29
  • Brainy
  • Answer
  • March 2, 2022

Create a formula field that will represent the url for the record. Record urls take the form https://Airtable.com/base_id/table_id/record_id, You can get the base_id and table_id from your browser. You can get the record ID from the formula function RECORD_ID()

The formula will look something like this

"https://appXXXXXXXXXXXXXX/tblXXXXXXXXXXXXXX/" & RECORD_ID()

Then you can copy in bulk from the formula result.