Hi there,
I'm currently using 64-bit SAS and trying to import 32-bit Excel (xlsx) file.
Previously when using 32-bit SAS i was able to import using a code similar to below.
PROC IMPORT OUT= test
DATAFILE= "c:\test.xlsx"
DBMS=xlsx REPLACE;
GETNAMES=YES;
MIXED=YES;
USEDATE=YES;
SCANTIME=YES;
RUN;
But now that i have changed to 64bit system i can no longer keep the GETNAMES, MIXED, USEDATE, SCANTIME features this ultimately changes the formatting of the date fields so i have to add manual lines of codes to change it.
Is there a way to use the same code as shown above in 64 bit system?
Thanks