The Community will be undergoing maintenance on Friday January 10 at 2:00pm - Saturday January 11 at 2:00pm EST, and will be "read-only." For assistance during this time, please visit our Help Center.
I am writing a large formula that looks for answers in another field and outputs their related categories. I have done this with multiple IF(OR(SEARCH( formulae, and it has worked great.
However, this returns multiple categories as a single string running into each other, eg. “SensoryEscapeTangible”. I need a way to insert a separator between these values without having to create another field. Any suggestions?
PS- ARRAYJOIN( doesn’t work as the use of ‘&’ between the formulae has concatenated the output into a single string already!
An easy way would be to put the separator in the text string for each category returned (e.g. “Sensory,”). Then, wrap the entire formula in a function to trim the final separator. Maybe
REGEX_REPLACE(YOURFORMULA,’,$’,’’)
Replace the comma before the dollar sign with the separator that you use. Hope it works for you.