Hi,
I have a macro and a proc import but im not too sure the macro is working and the file specified can't be found, is there anything wrong with what I have done please?
%let Prev_Date_Ran=0719
Proc Import
Datafile='V:\Branch\Office\Set_Up_&Prev_Date_Ran.xls'
Out=Work.RAW_All_Users_Previous_Run
DBMS=XLS
replace;
run;
1. Semi Colon is missing at the end of the statement.
%let Prev_Date_Ran=0719;
2. Replace the singe quotes with double quotes so that the macro variable could resolve.
Proc Import Datafile="V:\Branch\Office\Set_Up_&Prev_Date_Ran.xls"; Out=Work.RAW_All_Users_Previous_Run DBMS=XLS replace; run;
1. Semi Colon is missing at the end of the statement.
%let Prev_Date_Ran=0719;
2. Replace the singe quotes with double quotes so that the macro variable could resolve.
Proc Import Datafile="V:\Branch\Office\Set_Up_&Prev_Date_Ran.xls"; Out=Work.RAW_All_Users_Previous_Run DBMS=XLS replace; run;
Proc Import Datafile="V:\Branch\Office\Set_Up_&Prev_Date_Ran..xls"; Out=Work.RAW_All_Users_Previous_Run DBMS=XLS replace; run;
Also needs one additional period between the macro variable and the file extention. The first period will be used by the macro processor to concatenate following text.
If you run
%put "V:\Branch\Office\Set_Up_&Prev_Date_Ran.xls";
The result in the log is:
"V:\Branch\Office\Set_Up_0719xls"
demonstrating that the period gets "eaten" by the macro processor.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.