Hi all! I have been tasked to created a permanet file from a csv.
I had no problem creating one with another SAS file, but for whatever reason, I am getting this error message in the log:
33 libname sasclass "C:\Users\Jack's PC\Desktop\SAS\Week 4";
NOTE: Libref SASCLASS was successfully assigned as follows:
Engine: V9
Physical Name: C:\Users\Jack's PC\Desktop\SAS\Week 4
34 data exercise1;
35 set sasclass.exercise1;
36 run;
NOTE: There were 609 observations read from the data set SASCLASS.EXERCISE1.
NOTE: The data set WORK.EXERCISE1 has 609 observations and 6 variables.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.01 seconds
This was my program code:
libname sasclass "C:\Users\Jack's PC\Desktop\SAS\Week 4";
data Dataforproblem1;
set sasclass.Dataforproblem1;
run;
Any help would be much appreciated! Thank you!
I don't see the error. At the same time, I don't see where you're doing anything with a CSV, so I'm not really sure what you're trying to do or what problems you're having based on the code and log you've presented. Are you trying to create a SAS data set from a CSV? Where is your code that is trying to do that?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.