Hi
I have imported an excel file with this code. it worked fine. I am using sas studio.
PROC IMPORT DATAFILE = '/folders/myfolders/sas littlebook/OnionRing.xls' DBMS=XLS OUT = sales1;
RUN;
I placed another excel file sasdatapractice in my folder: '/folders/myfolders/sas littlebook/
PROC IMPORT DATAFILE = '/folders/myfolders/sas littlebook/sasdatapractice.xls' DBMS=XLS OUT = sdata;
RUN;
when I run the code again , it came with this error:
ERROR: Physical file does not exist, /folders/myfolders/sas littlebook/sasdatapractice.xls
please advise.