Mar 02, 2022 04:05 AM
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?
Solved! Go to Solution.
Mar 02, 2022 06:09 AM
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.
Mar 02, 2022 06:09 AM
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.