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

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,

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26
data _null_;
    call symputx('day_before',intnx('month',today(),-1,'e')-1);
Run;

%put %sysfunc(putn(&day_before,mmddyy10.));
--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26
data _null_;
    call symputx('day_before',intnx('month',today(),-1,'e')-1);
Run;

%put %sysfunc(putn(&day_before,mmddyy10.));
--
Paige Miller
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
  • 2 replies
  • 1225 views
  • 1 like
  • 2 in conversation