BookmarkSubscribeRSS Feed
jdk123
Calcite | Level 5
the current_date='01feb2011'd;

how to identify the last month of the last quarter of the current data '01feb2011'd?

thanks,
3 REPLIES 3
SPR
Quartz | Level 8 SPR
Quartz | Level 8
Hello Jdk123,

month=MONTH(current_date);
qtr=INT(month/4)+1;

Is this what are you looking for?

Sincerely,
SPR
Olivier
Pyrite | Level 9
Hi.
If I do understand your need, you have to try the INTNX function (to shift 1 quarter back in the past) with the optional "END" fourth argument to move to the end of the period, that is the last day of the preceding quarter.
[pre]last_quarter_month = INTNX("QUARTER", current_date, -1, "END") ;[/pre]
This gives 31dec2010 for CURRENT_DATE to 01feb2011. If you only want the month, include the whole INTNX function into a MONTH function ; that will produce 12 as a result.
Hope it helps.
Olivier
jdk123
Calcite | Level 5
Thanks Oliver, you have been great help.

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
  • 3 replies
  • 1753 views
  • 0 likes
  • 3 in conversation