Hello, All
I have following codes:
options symbolgen;
%let directory_start =%str(%'C:\SAS\);
%let directory_end = %str(.sas\%');
%let fileName = MySasFile;
%put &directory_start;
%put &directory_end;
%put &fileName;
%include %str(&directory_start.&fileName.&directory_end.);
The intend is to generate the following statement:
%include 'C:\SAS\MySasFile.sas\'
It seems that the macro variables are resolved ok; however, I got an error message saying that " ERROR: Incorrect %INCLUDE statement will not be executed. There is a syntax error."
What mistake have I made? Thank you for help.
%include 'C:\SAS\MySasFile.sas\'
Has an extra \ at the end of directory end.
What's with all the %str()? It seems easier if you avoid them in my opinion.
%let directory_start =C:\SAS\;
%let directory_end= .sas;
%letfileName=mysasfile;
%include "&directory_start.&fileName.&directory_end.";
%include 'C:\SAS\MySasFile.sas\'
Has an extra \ at the end of directory end.
What's with all the %str()? It seems easier if you avoid them in my opinion.
%let directory_start =C:\SAS\;
%let directory_end= .sas;
%letfileName=mysasfile;
%include "&directory_start.&fileName.&directory_end.";
Thank you very much.
I thought I had to write the statement as: %include 'C:\SAS\MySasFile.sas\' ; I don't know I can use double quote " instead of single quote '
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.