Hi
I have been running below workflow and i have used Multi Field Formula to get rid of double quotes for each value. However, when i run workflow the first value is still showing double quotes. Is there any way i can fix this. You can see below screenshot to understand the problem.
Solved! Go to Solution.
You need to pack your workflow so it comes with your data input.
Options > Export Workflow
Cheers,
Apparently there's a hidden character before your quotes. And it's the Unicode 65279 character, "ZERO WIDTH NO-BREAK SPACE",, according to this article:
https://stackoverflow.com/questions/9691771/why-is-65279-appearing-in-my-html
I'd remove it this way:
stripquotes(ReplaceChar([_CurrentField_], CharFromInt(65279), ""))
Cheers,
Thank you @mceleavey . That solved the problem.