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

within testit macro i want macro variables to be resolved and the outfile name to be generated as sasuser05AUG11_Test's

one way to force the resolution is to use %unquote , %unquote works if the oname does not contain the single quote

Any suggestions to make it work with oname having single quote or any other quoted character as well ?

%macro testit(outputlocation, outputname);

%let outfile=&outputlocation/&outputname;

%put &outfile;

%mend;

%let _metauser=sasuser;

%let oname=%str(&)_metauser.%str(&)SYSDATE._Test%str(%')s;

%put This is how values are passed into the stored process: &oname;

%let oloc=c:\mysas;

%testit(&oloc, &oname); 

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

Are you coding for full job security?

BQUOTE will quote an unmatched un-escaped single quote.

I usually macro variables in %PUT.

%macrotestit (outputlocation, outputname);

   %letoutfile =&outputlocation/&outputname;

   %put& outfile;

   %mend;

%let_ metauser=sasuser;

%letoname =% str(&)_ metauser.%str(&) SYSDATE._Test% str(%') s;

%letoname =% nrbquote(%unquote(& oname));

%put This is how values are passed into the stored process: % superQ( oname);

%letoloc=c:\mysas;

%testit(&oloc, &oname); 

I would change the date format to YYYYMMDD so the filenames will sort in a more pleasing order.

%let oname=%str(&)_metauser.%sysfunc(today(),yymmddn8.)_Test%str(%')s;

View solution in original post

1 REPLY 1
data_null__
Jade | Level 19

Are you coding for full job security?

BQUOTE will quote an unmatched un-escaped single quote.

I usually macro variables in %PUT.

%macrotestit (outputlocation, outputname);

   %letoutfile =&outputlocation/&outputname;

   %put& outfile;

   %mend;

%let_ metauser=sasuser;

%letoname =% str(&)_ metauser.%str(&) SYSDATE._Test% str(%') s;

%letoname =% nrbquote(%unquote(& oname));

%put This is how values are passed into the stored process: % superQ( oname);

%letoloc=c:\mysas;

%testit(&oloc, &oname); 

I would change the date format to YYYYMMDD so the filenames will sort in a more pleasing order.

%let oname=%str(&)_metauser.%sysfunc(today(),yymmddn8.)_Test%str(%')s;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1021 views
  • 1 like
  • 2 in conversation