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.

Formula for creating URL to records

Topic Labels: Hi!
3514 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Tobin_Perry
6 - Interface Innovator
6 - Interface Innovator

Hi,

I'm trying to write a formula that creates links for all the records of a particular table. 

 
This is creating a broken link. Am I missing something?
 
Thanks!
 
 
2 Replies 2
Ron_Daniel
8 - Airtable Astronomer
8 - Airtable Astronomer

I don't have access to your base to test this, but try
CONCATENATE("https://airtable.com/apppHrkLvUlS6WHMn/tbluWhdAjZM8xU9DD/viwCnMkKvccWgTatL/" & RECORD_ID())

AirBenderMarcus
7 - App Architect
7 - App Architect

Hey Tobin! You were missing the slash between the View ID and Record ID. Try this.

CONCATENATE("https://airtable.com/apppHrkLvUlS6WHMn/tbluWhdAjZM8xU9DD/viwCnMkKvccWgTatL/", RECORD_ID(), "/")

I even added the slash at the end for good measure though it should still work without it.