To whom it may concerns,
I am very new SAS user and I am using the university Edition version. I have tried to do my exercise on SAS and the result comes out like screenshot below.
However, the diabetes.sas7bdat actually exits and does contains column. I tried the same thing on Uni computer. It is fine. I am not too sure what mistake I did? Could you help me please?
Thanks
Khanh Nguyen
Hi @kngu022 Can you plz check what is in the A1 library using proc contents
proc contents data=a1._all_ nods;
run;
and let us know
I just tried what you just showed and the result like this
Hello @kngu022 Please make sure there is a space between _all_ and nods. Review your code and the example I posted earlier. Here it is again
proc contents data=a1._all_ nods;
run;
I just tried it again and the results is
so where is the Diabetes dataset?
That doesn't seem to be in the library
1
The diabetes is inside the A1 file. I just wonder how can I include the diabetes dataset?
regards,
Okay so make sure your path is full and correct in the libname statement pointing to the A1 folder. Then, reassign libname and check
Thanks. I successfully got it.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.