Help

Re: Creating a custom URL for a typeform

Solved
Jump to Solution
1168 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Minette_Yu
4 - Data Explorer
4 - Data Explorer

Hi there!

It appears as if I have stumped even Reddit… here is my question:

I am attempting to customize a typeform link to include hidden fields associated with one table so that I can sync it to the next table and keep the data consistent. I have tried both of these in a formula, and neither are working:

Brand Onboarding - New & {First Name for Typeform URL} & “&email=“ & {Email Address} & “&brand=“ & {Brand Name} & “&last_name=“ & {Last Name for Typeform URL}

CONCATENATE("Brand Onboarding - New, {First Name for Typeform URL}, “&email=“, {Email Address}, “&brand=“, {Brand Name}, “&last_name=“, {Last Name for Typeform URL})

I created the first name and last name for typeform to replace a space between two words with %20 so I already took care of any space issues. Any ideas on what else I’m missing? Thanks!

P.S. I would LOVE to ditch Typeform, but until the UX and customization options on the airtable forms vastly improve, it doesn’t make sense for us to make the switch in most cases.

1 Solution

Accepted Solutions

I did a little research on tyeform urls

The # should be first

try this:

CONCATENATE("https://storeyline.typeform.com/to/gT1ZCqUZ","#first_name=",{First Name},"&email=",{Email Address},"&brand=",{Brand Name},"&last_name=",{Last Name})

Which will give you this URL:

(https://storeyline.typeform.com/to/gT1ZCqUZ#first_name=Vivid&email=none@none.com&brand=Aw&last_name=Squid)

See Solution in Thread

6 Replies 6

The ENCODE_URL_COMPONENT(component_string) should take care of the space characters.

I am confused on what is a string and what parts of your URL are AT fields can you post a screenshot of the Airtable formula editor with the failed code?
The " at the beginning looks like you opened a string but never closed it.

Thanks! I tried encoding earlier and it didn’t work. I tried again just now for the screenshot and the error is always the same. Formula and screenshot below.

CONCATENATE("Brand Onboarding - New,
ENCODE_URL_COMPONENT({First Name}),
“&email=“,
ENCODE_URL_COMPONENT({Email Address}),
“&brand=“,
ENCODE_URL_COMPONENT({Brand Name}),
“&last_name=“,
ENCODE_URL_COMPONENT({Last Name}))

Screen Shot 2022-04-14 at 2.50.17 PM

DISCLAIMER: I have never used Typeform.

I am confused as why the #first_name query is not formatted like &email=

Do you know what the correct URL should look like from Typeform?

Here is a formula that succeeds, but I took some liberties on the query string

CONCATENATE("https://storeyline.typeform.com/to/gT1ZCqUZ","&first_name=",{First Name},"&email=",{Email Address},"&brand=",{Brand Name},"&last_name=")

Ah! The formula worked, but alas, the link did not.

Here is the “share” link directly from typeform (I added spaces because it said i wasn’t allowed to post the URL):

https://storeyline. typeform.com /to/gT1ZCqUZ#first_name=xxxxx&email=xxxxx&brand=xxxxx&last_name=xxxxx

I did a little research on tyeform urls

The # should be first

try this:

CONCATENATE("https://storeyline.typeform.com/to/gT1ZCqUZ","#first_name=",{First Name},"&email=",{Email Address},"&brand=",{Brand Name},"&last_name=",{Last Name})

Which will give you this URL:

(https://storeyline.typeform.com/to/gT1ZCqUZ#first_name=Vivid&email=none@none.com&brand=Aw&last_name=Squid)

This worked - you rock! Thanks!