I was working on a task and just wanted to import a xlsx file. The code is just a normal proc import step as below. Proc import datafile = “//path” out=“want” dbms=xlsx replaces; run; Say there is a column (rating) and contains some varibles like “4B”, “1A”, “3C” etc. But after running the code, It shows as “_x0034_B”, “_x0031_A”, “_x0033_C”, and this also happens on other character format columns. And this issue only exists on a single xlsx file, all other files are worked as usual. I was wondering if there is any error on the specific file. Please help, many thanks.
... View more