Jul 24, 2019 11:41 PM
Hey guys,
I am wondering how I would go about importing text from another field like “Diamond Plus” and translating it into “diamond-plus”?
Any way to do this without just building a really long IF statement?
Thanks so much,
Adam
Solved! Go to Solution.
Jul 24, 2019 11:45 PM
LOWER(SUBSTITUTE({Field Name}, ' ', '-'))
^ that formula replaces spaces with a dash, then sets all letters to lowercase.
Jul 24, 2019 11:45 PM
LOWER(SUBSTITUTE({Field Name}, ' ', '-'))
^ that formula replaces spaces with a dash, then sets all letters to lowercase.
Jul 24, 2019 11:46 PM
Thank you so much! Works like a charm :slightly_smiling_face: