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

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.

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

%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.";

View solution in original post

2 REPLIES 2
Reeza
Super User

%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.";

abcd123
Fluorite | Level 6

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 '


sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 6582 views
  • 0 likes
  • 2 in conversation