Hi ,
I am looking for auto date fetching;
e.g start date='05feb2018'd
i want to fetch auto date for every next month i.e. 5th day of every month should be the start date.
.eg. for next month when the program is auto run it should fetch the start date as 5th day of next month.
Similarly end date should be last day of every current month.
e.g end_date='28thfeb2018'd for feb ...for march it should fetch the last date e.g. end_date='31March2018'.
Also let me know how can we code it in EG using the query builder.
Thanks
intnx gives you all the flexibility. You should really look into it.
data want;
format startDate endDate yymmdd10.;
startDate = intnx("day",intnx("month", today(),1),4);
endDate = intnx("month", today(),0,"end");
run;
proc print data=want; run;
Use the date interval function intnx:
data want;
format startDate endDate yymmdd10.;
startDate = intnx("day",intnx("month", today(),0),4);
endDate = intnx("month", today(),0,"end");
run;
proc print data=want; run;
intnx gives you all the flexibility. You should really look into it.
data want;
format startDate endDate yymmdd10.;
startDate = intnx("day",intnx("month", today(),1),4);
endDate = intnx("month", today(),0,"end");
run;
proc print data=want; run;
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.