Hi
Been researching and testing all the solutions I can find to try and work this out. Sadly no luck
Have a text field in excel that has several values in it separated by comma e.g. 123456, 545454, 999999
These values are needed to be passed into a JSON request and need to be formatted so that the commas are replace with "," - so the outcome I am trying to get is 123456","545454","999999 (the first and last double quotes are dealt with in the JSON request
What I get is 123456\",\"545454Z\",\"999999
I've tried lots of suggestions on here to add a step after I get this output to
Try and remove using replacing with DecodeURIcomponent - %5C (the \)
Try and remove using replace \" with "
Try and remove using replace \ with '' (nothing)
Would anyone have ideas on how I can solve please? Happy to be pointed to suggestions for further research