Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Copy record URL in bulk

Topic Labels: Base design
Solved
Jump to Solution
2057 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Archie_Timosenc
6 - Interface Innovator
6 - Interface Innovator

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?
image
image

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto

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.

See Solution in Thread

1 Reply 1
kuovonne
18 - Pluto
18 - Pluto

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.