hi,
i am getting an error while importing a excel file into sas.i am using portable version sas .
this is my code:
proc import datafile="C:\Analytixlabs1\5 - Data Exploration (SAS Module 2)\Grocery_coupons.xls"
out=Grocery_coupons dbms=Excel
Replace;
Sheet="Data";
getnames=yes;
datarow=2;
run;
i am getting an error: Statement is not valid or it is used out of proper order.????????
please help
Hi,
Please clarify what software you are using, there is no such thing as portable SAS. Also, post your log including the statements before the problem area.
Hi,
i am using SAS system 9.0 portable version.
what should i do ??
is there any other way to import excel file into sas?
You haven't answered either of my questions. There is no such thing as portable SAS, what are you using, how is is setup? Are you using University Edition, or Enterprise Guide etc. You haven't posted the log of what is happening before that statement either.
Define "portable".
And SAS 9.0 is way beyond old. The oldest SAS version reasonably used is 9.2.
AND POST YOUR LOG!!!!!
One thing to try is to use the right extension:
proc import datafile="C:\Analytixlabs1\5 - Data Exploration (SAS Module 2)\Grocery_coupons.xlsx"
I would try changing the file to a .csv instead of a .xlsx file since SAS may have problems reading in an Excel file with any verison prior to SAS 9.2.
"datarow=2;" is not supported by engine Excel, remove it .
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.
Ready to level-up your skills? Choose your own adventure.