I want to read an excel file into SAS environment (Server) which is saved on my windows desktop (using proc step or data step).
Can it be possible? how?
Thanks in advance...
You have to save any data that you want to import into SAS with SAS code only (no use of Enterprise Guide import wizards) to a location that is "visible" from the context of the SAS session.
You can do that by
After the file is visible, you can either use proc import or libname excel.
Note, though, that the use of the Excel file format for data interchange is advised against, as you force SAS to make guesses about column attributes; it is recommended to save spreadsheets to text files and read those with a data step, where you have control.
@Kurt_Bremser "no use of Enterprise Guide import wizards"
I thought the SAS EG import wizard uses client side .net to read the Excel and then uploads the data to the server for further processing - or you select in one of the Wizard windows to include the data and then EG creates code with data included.
Yes, the conversion from Excel to an intermediate text which is copied to the server happens with help of MS.
But from the OP, I take it that a solution without EG interaction is wanted.
If you've got SAS Enterprise Guide and this is a one off task then use the SAS Import Wizard (File/Import) to read the data from Excel. That's by far the quickest way to do things for simple Excel spreadsheets.
If you need a repeatable and automated solution which also can execute without the SAS EG client then everything @Kurt_Bremser already wrote.
Yes it's possible, did you try the forum's search functionality?
- Cheers -
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.