I created a field called “industry” with different industry values.
I wanted to create another field called “preferred industry” with 3 industries, separated by commas.
e.g.
Retail, FMCG, Hospitality
To do this put this regex in “preferred industry”:
({{industry}},{{industry}},{{industry}})
However it gives a result like this:
FMCG,{{industry}},{{industry}}
Am I using the right method to generate a list of x values, separated by commas?
Thank you!
Ivan