Help

Is there a way to make a URL for a field or a record

1379 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Really_ReallyRu
4 - Data Explorer
4 - Data Explorer

Is there a way to make a URL for a field or a record such that I could include it in an email and someone with access to the table could go directly to the field/record I am talking about?

1 Reply 1
Nick_Dennis
7 - App Architect
7 - App Architect

If they have access already then you can just right click on any record and choose “Copy record URL”.

You could create a field to generate these links automatically with a Formula as well. You’d do that by copying one of these link urls with right click, removing the record’s ID from the end (but not the other parts), and appending RECORD_ID() to it. Something like this:
"https://airtable.com/xxx/xxx/" & RECORD_ID()

Hope that helps.