why SAS PROC IMPORT twisted the values in EXCEL 2013 file?
We have EXCEL 2013 file with values such as C&IB, but after reading my PROC IMPORT, the results are C&IB.
Changed From C&IB to C&IB
Here is the code;
proc import datafile="&Maps./LOBOR_Map_samples.xlsx"
out=map
dbms=xlsx replace;
getnames=YES;
run;
Who knows what is wrong?
Thanks a lot!
Hi @fankaiqing
This is a known issue with the XLSX engine, reported to R&D.
If you can't use @Reeza 's solution for now, a couple of other workarounds are:
- Use the EXCELCS engine. You may have to install SAS PC Files Server.
- Use the XLS engine (after you save your file to LOBOR_Map_samples.xls).
Hope that helps.
Cheers,
Damo
Hi @fankaiqing
This is a known issue with the XLSX engine, reported to R&D.
If you can't use @Reeza 's solution for now, a couple of other workarounds are:
- Use the EXCELCS engine. You may have to install SAS PC Files Server.
- Use the XLS engine (after you save your file to LOBOR_Map_samples.xls).
Hope that helps.
Cheers,
Damo
Open the .xlsx file with a ZIP program, and navigate to the \xl\worksheets folder within the file. Open sheet1.xml with a text editor.
When you scroll far enough to the right of the second line, you'll find that your values are stored like that (HTML encoding) by Excel; it seems that proc import gives you that string.
If you did the sensible thing and stored your table to a .csv file, and imported that, you would not have the problem.
For the umpteenth time: DO NOT USE EXCEL FILES FOR DATA TRANSFER!
BTW: your Excel file is 18K in size, the .csv created from that is just 1K. I rest my case.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.