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.));
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →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.