BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
eiraduku
Fluorite | Level 6

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?

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

You where supposed to change the value of the macro variable OUTPATH to match the name of the directory where SAS can write the file.  The error message is saying the directory you entered does not exist.

View solution in original post

1 REPLY 1
Tom
Super User Tom
Super User

You where supposed to change the value of the macro variable OUTPATH to match the name of the directory where SAS can write the file.  The error message is saying the directory you entered does not exist.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

LIBNAME 101

Follow along as SAS technical trainer Dominique Weatherspoon expertly answers all your questions about SAS Libraries.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 936 views
  • 3 likes
  • 2 in conversation