Help

Using a formula to generate URL

Topic Labels: Formulas
2514 1
cancel
Showing results for 
Search instead for 
Did you mean: 
markd
4 - Data Explorer
4 - Data Explorer

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

1 Reply 1

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.