Hello, I'm trying to export a SAS table as a CSV file using proc export. I'm not sure why the leading zeros is getting truncated in one of the columns. I tried to use the ODS csv option and also tried to export as a .txt file but still losing the leading zeroes. I'm looked up the forums and I'm not sure I was able to find any other solution that works for me. Just FYI, the file gets imported to a tableau workbook and so the end user is not able to search the data values as it's not accurate. There are few other values that are longer than these missing values and they appear accurate so I'm not sure if the length is an issue. Any help is much appreciated! This is the proc export code I used. PROC EXPORT DATA= Data_Feb2019 OUTFILE="\path\Feb 2019 results.csv" DBMS = csv REPLACE; RUN; Hoping to hear soon! Ashok
... View more