Hello,
I’m trying to generate CSV file with just strings inside. Unfortunately I’m unable to enclose strings in double quotes.
I’ve tried using Chr(34) + strVar, but that ends with strings enclosed in three double quotes.
All variables are defined as System.String.
I’m using these actions to write CSV:
- Build Data table (all columns are strings),
- Add data row (arrayRow = {numEA, numPS, “OK”}
- Append to CSV
Thank you.