I need Survey123 to recognize a forward slash as a remark with the concatenate function.
Example: concat(${sample_name},"/",${depth_range}).
When I do this, it results as no space or character in between. How do I get it to recognize the forward slash so I can have the answer in my desired format?
Thanks
Hi Kirsty,
If you use the HTML code for the character, it'll recongise it!:
concat(${sample_name},"/",${depth_range})
Carmel
I was working on something that used the same method and when I tried using the HTML code it didn't work. However I tried:
concat(${someVariable}, '/', ${someVariable})
This seemed to have worked. I am wondering if the double quotes are messing with the function.
You're right, single quotes work 🙂
Carmel