Skip to main content

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!
 
 

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


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.


Reply