in our sas program we have dates thta are hard coded, something like this
%let YYYYMM = 201704;
%let date1 = '01Apr2017'd;
%let date2 = '01May2017'd;
everythime we run a report, have to manually change them. can yo uplease advise how to automate these values.
YYYMM is the previous month and year
date1 is the first date of the previous month
date2 is the first daty of the current month
thanks in advance
Like this?
%let YYYYMM = %sysfunc(putn(%sysfunc(intnx(month,%sysfunc(today()),-1)),yymmn6.));
%let date1 = %str(%')%sysfunc(putn(%sysfunc(intnx(month,%sysfunc(today()),-1)),date9.))%str(%')d;
%let date2 = %str(%')%sysfunc(putn(%sysfunc(intnx(month,%sysfunc(today()), 0)),date9.))%str(%')d;
Like this?
%let YYYYMM = %sysfunc(putn(%sysfunc(intnx(month,%sysfunc(today()),-1)),yymmn6.));
%let date1 = %str(%')%sysfunc(putn(%sysfunc(intnx(month,%sysfunc(today()),-1)),date9.))%str(%')d;
%let date2 = %str(%')%sysfunc(putn(%sysfunc(intnx(month,%sysfunc(today()), 0)),date9.))%str(%')d;
Or
data _null_;
call symputx('YYYMM',put(intnx('month',today(),-1),yymmn6.));
call symputx('date1',intnx('month',today(),-1,'b'));
call symputx('date2',intnx('month',today(),0,'b'));
run;
Which is much easier on my eyes than nested %sysfunc.
Yes, this does not have '01Apr2017'd but the numeric value that the date resolves to. Unless you are actually putting date1 and date2 into text output such as a title then the numeric will work just fine.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.