Upcoming database upgrades. Airtable functionality will be reduced for ~15 minutes at 06:00 UTC on Feb. 4 / 10:00 pm PT on Feb. 3. Learn more here
Jul 08, 2019 07:53 PM
I’m trying to generate a URL for each record by inserting record details (source, signup email address, and referrer email address) so that I can pass and track our signup forms. Does anyone know how I would do this properly with a formula?
examplesite.typeformdotcom/to/nk19Yv?source=xxxxx&signup_email_address=xxxxx&referrer_email_address=xxxxx
Jul 08, 2019 11:52 PM
If the xxxxxs are placeholders for your data, try something like:
'examplesite.typeform.com/to/nk19Yv?source='&{Source Field}&'signup_email_address='&{Email Field}&'referrer_email_address='&{Email Field 2}
Essentially, plain text goes between ‘quotation marks’, field references are between {curly braces}, and every grouping is joined by an ampersand (&). You could also try the CONCATENATE()
function.