Apr 17, 2020 09:23 AM
I would like to remove the following special characters on the “project name”
~ ` ! @ # $ % & * ; : ? . , ’ "
UPPER(CONCATENATE(Language, “-”, Team, “-”, SUBSTITUTE({Project Name}, " ", “”), “-”, {Date Added to Airtable}))
Can someone help me :pray:
Thanks
Solved! Go to Solution.
Apr 17, 2020 09:34 AM
It looks like you have a great start with using the SUBSTITUTE
function to remove spaces. To remove additional characters, use nested substitution functions, as demonstrated in this post on creating slugs for webpages. That post replaces the special character with their url encoded equivalents, but you can remove them entirely if you like.
Apr 17, 2020 09:34 AM
It looks like you have a great start with using the SUBSTITUTE
function to remove spaces. To remove additional characters, use nested substitution functions, as demonstrated in this post on creating slugs for webpages. That post replaces the special character with their url encoded equivalents, but you can remove them entirely if you like.
Apr 17, 2020 10:37 AM
Thank you Kuovonne, It worked :metal: