Hi All,
I m trying to do sas date function using sas macro and i need below output.
%let a= %sysfunc(intnx(day,%sysfunc(today()),-1),yymmdd10.);
Output
2017-10-26.
but need output should be .
'2017-10-26'
within the code.
Please guide me how would be do it.
data _null_;
date=today()-1;
format date yymmdd10.;
put date;
run;
Where do you use the macro variable? Depending on the use, both the format and the quotes might not be necessary.
If you have to do this in macro, you could precede and follow you expression with %str(%'), as in:
%let a= %str(%')%sysfunc(intnx(day,%sysfunc(today()),1),yymmdd10.)%str(%');
%put &=a;
Personally I'm not a fan of including quotes in macro variables, I prefer to leave them unquoted and then use with quotes as necessary. It makes them more versatile in the long run and allows for multiple uses.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.