BookmarkSubscribeRSS Feed
VanessaP
Calcite | Level 5

I need to select renewal dates a month and a day from now as part of an automated process that I will create as a process node in SAS Customer Intellligence Studio.   

For example, today is May 11th 2016, so I want to find all renewal dates of June 12th 2016.  

I realise I am going to have a problem in February when I will miss some dates.  Has anyone overcome this problem?   For various reasons, I can't simply use 30 days in the future or 31 days in the future.

Thanks

Vanessa

3 REPLIES 3
Reeza
Super User

Use the intnx function.

 

where date = intnx('month', today()+1, 1, 's')

Astounding
PROC Star

I think you'll need a slight variation:

 

cutoff_date = intnx('month', today(), 1, 's') + 1;

 

To address your question about different end-of-month values, SAS does have some logic built into the INTNX function to address these cases.  But you'll have to look through some examples to see if SAS handles it the way you would like.  Here's a good starting point:

 

http://support.sas.com/documentation/cdl/en/lefunctionsref/63354/HTML/default/viewer.htm#p10v3sa3i4k...

 

Good luck.

Reeza
Super User

The trick is to match your business rules. INTNX allows you variations to get end of month value, using an interval of 0, with end or beginning option for example. You haven't specified the rules so we can't help beyond this, but hopefully it gets you started. 

 

 

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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