I need some help with a macro variable that will equal the value of the day before the previous months end date. I can get previous month end date but how to I create another macro variable for the day before that date?
I have made several attempts but they never resolve to what I need.
Any assistance will be greatly appreciated.
Thank you,
data _null_;
call symputx('day_before',intnx('month',today(),-1,'e')-1);
Run;
%put %sysfunc(putn(&day_before,mmddyy10.));
data _null_;
call symputx('day_before',intnx('month',today(),-1,'e')-1);
Run;
%put %sysfunc(putn(&day_before,mmddyy10.));
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.