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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 817 views
  • 3 likes
  • 2 in conversation