Skip to main content

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

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.


Reply