Help

Re: Url formula with spaces

2335 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Sebastien_Doli1
4 - Data Explorer
4 - Data Explorer

Hi Airtable community
I’m a new user and i have a problem with a formula that’s probably simple for everybody here.

I need to make an url with this formula for my typeform : CONCATENATE(‘https://mytypeform.typeform.com/to/gMQE2K?company=’, {Company}, ‘&person=’,{Person} ,’&id=’,{ID})

But there is often spaces in the names of the companies, which is breaking my URLs

I found the formula to substitute the spaces :
SUBSTITUTE(fieldName, " ", “%20”)

But i can’t figure out where to place it in the final formula.

Thanks a lot if you can help !
Sébastien

9 Replies 9

Hi @Sebastien_Dolidon - replace:

{Company}

with

SUBSTITUTE({Company}, " ", “%20”)

JB

Thanks a lot for you answer JB, but where should i put it in the other formula :
CONCATENATE(‘https://mytypeform.typeform.com/to/gMQE2K?company=’, {Company}, ‘&person=’,{Person} ,’&id=’,{ID})

Just after it ? inside it ?

Sorry, should have been clearer. Try this:

CONCATENATE('https://mytypeform.typeform.com/to/gMQE2K?company=', SUBSTITUTE({Company}, ' ', '%20'), '&person=',{Person} ,'&id=',{ID})

JB

It’s a formula within a formula, which is pretty common, of course. You could also create the “new” company name as its own field, use this new field in the formula, then hide the modified company name field. I sometimes do this to reduce the formula complexity.

Sebastien_Doli1
4 - Data Explorer
4 - Data Explorer

Thanks a lot JB, it’s working perfectly ! love u ! have a great week end :grinning_face_with_smiling_eyes:

Mark_Comish
6 - Interface Innovator
6 - Interface Innovator

I am trying to do a similar thing but I have an extra field. Please help me correct the formula…

CONCATENATE(‘https://form.jotform.com/’, &{formID}, &’?companyName=’, SUBSTITUTE({Company Name}, ’ ‘, ‘%20’), &’&imageLink=’, &{Logo URL})

Figured it out:

CONCATENATE(‘https://form.jotform.com/’ &{formID} &’?companyName=’,
SUBSTITUTE({Company}, ’ ', ‘%20’), ‘&imageLink=’,{Logo URL})

Trying to do something similar except that for the pre-filled form, it is not copying all of the substituted text. Why might this be?

Maybe this may help 
Prefilled Forms extension for Airtable by @kuovonne