I am struggling getting past this first step of defining a file path using the %let macro code. Specifically, after running the code (SAS Studio - University Edition), with the correct path, the code runs but I cannot see anything in the log to indicate the macro variable was created. When calling in the macro variable in the Proc Export activity - the program does not recognize the &outpath macro so no table is produced. I tried a few different ways of running the %let to define the &outpath macro variable and proc export program to produce the pg1.storm_final SAS table but cannot get past this exercise. Quick question, after running the following exercise - the following code - what should I see in the log? How do I know the &outpath macro variable was successfully created and available to use in the proc export exercise? %let outpath=/folders/myfolders/EPG1V2/output;
... View more