Help

Re: Formula for creating URL to records

1711 0
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
7 - App Architect
7 - App Architect

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.