The last field in each row of my workflow has the following formula:
if [RowCount] = 1 then '101'
else
'103'
endif
In the output I am getting "101" or "103" but I do not want quotes.
I am exporting as a .csv with a pipe delimiter | to a file with .txt extension and the code page is the default, ISO 8859-1 Latin-1.
Because I have the pipe delimiter, I cannot choose to Never Quote Output Fields. It only quotes this field; the other 46 fields are fine. I have read through all the other posts with similar problems, but the solutions do not work for me. I am wondering if it is because there is something in my IF formula here that is causing the issue. I have also tried the StripQuotes function to no avail. Hoping to learn something new here. Thanks!