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

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

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

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;




PG

View solution in original post

4 REPLIES 4
PGStats
Opal | Level 21

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;




PG
anirudhs
Obsidian | Level 7
Sorry for start date the month should be the next month.i.e. if end date=28feb2018 then start date should be 5march2018
PGStats
Opal | Level 21

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;




PG
anirudhs
Obsidian | Level 7
Thanks a lot for the code,
missed the simple understanding in hurry.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 4 replies
  • 1654 views
  • 0 likes
  • 2 in conversation