Oct 05, 2021 04:17 AM
Hi. I would appreciate help with the following:
I have the fields Country (required field), Region and Title. I need to concatenate these fields in different ways depending on which fields are filled.
-If just Region is filled then Region, Country
-If just Title is filled then Country- ‘Title’
-If both Region and Title are filled then Region, Country- ‘Title’
-If neither are filled then Country
Thank you in advance for any help.
Katy
Solved! Go to Solution.
Oct 05, 2021 07:26 AM
IF({Region}, {Region} & ", ", "") &
{Country} &
IF({Title}, "- '" & {Title} & "'", "")
Oct 05, 2021 07:26 AM
IF({Region}, {Region} & ", ", "") &
{Country} &
IF({Title}, "- '" & {Title} & "'", "")
Oct 05, 2021 07:55 AM
Amazing! Thank you so much @Kamille_Parks!!