libname libsas "folders/myshortcuts/s2/";
data libsas.account;
account_id = 00001;
firtname ='John';
lastname ='Liu';
run;
ERROR: Library LIBSAS does not exist.
Please help me with code,I am a beginner and this library thing is becoming a trouble for me.
I have attached the sceenshot of log as well.
The path is incorrect, the / in front of folders is missing.
thanks for your help
but actually i have defined s2 in shared folder so it is coming under my shortcuts in sas studio so i can refer it as /folders/myshortcuts/s2.So please help me out what went wrong
The path is incorrect, the / in front of folders is missing.
Are you using an English browser?
I think something may be wrong earlier and carrying over.
Can you start a new session, restart your VM and run only the code shown.
I am using SAS Studio (SAS University Edition)
I started the new session but error is still the same.
I am unable to assign a libref through libname statement.
libname libsas "/folders/myshortcuts/s2/";
data work.out;
set libsas.abc;
run;
ERROR:
File LIBSAS.ABC.DATA does not exist
abc.xlsx data is physical present under S2 and is visible in myshorts in sas studio.Please refe the screenshot attached.
Please help me ith this.
.
Did the solution suggested not work?
Thanks Reeza it worked but I am facing another issue which I have already described in previous reply.Please help me on that.
Thanks in advance
You cannot use excel file directly as a dataset. You need to first import teh excel file using proc import as below.
proc import datafile= "<path>" out=<dataset name in sas>
sheet ="<sheetname if specific sheet needs to be imported>" ;
run;
post this you acn use your dataset.
Another way would be using DDE in sas.
thanks a lot Kaverisonu for your help.
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.