Jan 11, 2023 04:39 AM
Hi,
I'm trying to write a formula that creates links for all the records of a particular table.
Jan 11, 2023 05:19 AM
I don't have access to your base to test this, but try
CONCATENATE("https://airtable.com/apppHrkLvUlS6WHMn/tbluWhdAjZM8xU9DD/viwCnMkKvccWgTatL/" & RECORD_ID())
Jan 11, 2023 07:45 AM
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.