Hi all,
Is there a way of importing or reading data from excel without converting the raw data into csv or text format.Does proc import have a solution for this.Can some one inform me of this.
I forgot to mention that I use a unix OS through SSH.So I think wont be able to use the import wizard.I am also not using X Windows.I think proc import should be the only solution.
If you are using SAS version 9 you can read in the Excel files natively. We use Unix here and there isn't a direct import path unless you have the "SAS/ACCESS Interface to PC Files" installed in SAS. We always save files onto unix as CSV rather than Excel.
To test what modules you have access to in sas run this:-
Code:
proc setinit;
run;
This'll put into the log your setinit settings.
Enjoy.
Yep, I think so too. We don't have that module on Unix, not even sure if it is available on Unix in version 8. Remember to be careful when saving data from Excel to csv, leading zeroes can be trimmed, dates can be given funny formats and things like that can mess up your import.
Enjoy.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.