Hello I'm trying to do this portion of the tutorial:
Then I run into a runtime error where the first error message seems to be:
ERROR: File WORK.CORE_SCORE.DATA does not exist.
My Code:
proc sort data=<EMWS3>.score_SCORE out=bestlist;
by descending ep_target_b;
run;
proc print data= bestlist;
var control_number ep_target_b;
run;
The libname does not actually belong in <brackets>. If you have defined EMWS3 in a LIBNAME statement, use data sets within the folder without brackets:
proc sort data=EMWS3.score_SCORE out=bestlist;
SAS documentation uses brackets to indicate something is optional. So if you were dealing with a temporary data set in the WORK library, you could refer to the data set as either WORK.score_SCORE or score_SCORE.
The libname does not actually belong in <brackets>. If you have defined EMWS3 in a LIBNAME statement, use data sets within the folder without brackets:
proc sort data=EMWS3.score_SCORE out=bestlist;
SAS documentation uses brackets to indicate something is optional. So if you were dealing with a temporary data set in the WORK library, you could refer to the data set as either WORK.score_SCORE or score_SCORE.
Thank you Astounding and Cynthia. The initial error message has gone away. Now I'm left with:
ERROR: File EMWS3.SCORE_SCORE.DATA does not exist.
I will go through the Programming 1 and see if that reveals anything that would help me.
Edit:
Reading this revealed that my EM_IMPORT_DATA was not named SCORE_SCORE.DATA
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.