Here is the log when I try to run the code in the setup.sas file for the Essential Training I: ERROR: Open code statement recursion detected. 236 /* In the line of code below, replace FILEPATH */ 237 /* with the path to your EPG1V2/data folder */ 238 /***********************************************/ 239 240 %let path = H:\Personal\SAS\coursefiles\EPG1V2\data; 241 242 /**********************************************/ 243 /* DO NOT EDIT THE CODE BELOW */ WARNING: The quoted string currently being processed has become more than 262 characters long. You might have unbalanced quotation marks. 244 /**********************************************/ 245 246 libname PG1 "&path"; WARNING: Apparent symbolic reference PATH not resolved. Here is the code: /***********************************************/ /* In the line of code below, replace FILEPATH */ /* with the path to your EPG1V2/data folder */ /***********************************************/ %let path = H:\Personal\SAS\coursefiles\EPG1V2\data; /**********************************************/ /* DO NOT EDIT THE CODE BELOW */ /**********************************************/ libname PG1 "&path"; This is the first step towards setting up the course. I am using SAS Windowing environment 9.4. Why can I not create this library?
... View more