02-10-2017 11:20 AM
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!
02-10-2017 11:39 AM
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?