Hello
I was trying to get the output as mentioned in a video..
This is what is in libname.sas
libname pg1 "S:/workshop/EPG1V2/data/";
%let outpath=filepath-to-output-folder;
This is the program
proc export data=pg1.storm_final
outfile="&outpath/storm_final.csv"
dbms=csv replace;
run;
This is the error
ERROR: Physical file does not exist, C:\Users\vleuser-11591\filepath-to-output-folder\storm_final.csv.
Any help?