Help

Re: Create field in a table to show each record's URL

Solved
Jump to Solution
3895 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Mike_Morse
5 - Automation Enthusiast
5 - Automation Enthusiast

I would like to have a field in my table that shows the URL for each of the records so that this can easily be added to an email in a mail merge. I realize that I can copy the URL for any record and then paste it into the URL field that has been to the table, but there must be a simple way to just display the record URL.
Thanks, Mike Morse

1 Solution

Accepted Solutions
AlliAlosa
10 - Mercury
10 - Mercury

Hi there! You can accomplish this using a formula :slightly_smiling_face:

Copy the URL of a record, then add a new formula field. Paste the URL into the formula builder and delete the last part of the URL, beginning with “rec…”. This is the Record ID of the specific record you copied the URL from. The rest of the URL is built up of your base, table, and (sometimes) view IDs.

Put the remaining URL in quotes, and append it with “& RECORD_ID()”. Your final formula should look something like this:

"https://www.airtable.com/..." & RECORD_ID()

Hope this helps!

See Solution in Thread

2 Replies 2
AlliAlosa
10 - Mercury
10 - Mercury

Hi there! You can accomplish this using a formula :slightly_smiling_face:

Copy the URL of a record, then add a new formula field. Paste the URL into the formula builder and delete the last part of the URL, beginning with “rec…”. This is the Record ID of the specific record you copied the URL from. The rest of the URL is built up of your base, table, and (sometimes) view IDs.

Put the remaining URL in quotes, and append it with “& RECORD_ID()”. Your final formula should look something like this:

"https://www.airtable.com/..." & RECORD_ID()

Hope this helps!

Thanks for the answer. Worked great once I figured out that I had to remove the / before the &.