Hi, I am trying to export a very large dataset from SAS to CSV using "|" as my delimiter. I'm using the code as follows: filename output "filepath" encoding="UTF-8"; proc export data = dataset outfile = output dbms = csv replace; delimiter="|"; run; However, some of the fields in the dataset contain commas and they are still being read as delimiters in the CSV files, causing columns to be broken up. Is there another way the delimiter needs to be coded to make sure commas are not read as delimiters?
... View more