Hello SAS Forum, I have an excel data file, where the columns are full of numbers. The numbers are seperated by columns; e.g. 1,356,292 (meaning approximately 4/3). But when I import the file via proc import: proc import datafile = data
out=data
dbms=xlsx
replace;
run; SAS reads this as 1356292. Is there an easy step to convert it "back" to the original format? 🙂 Best regards,
... View more