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;
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.