I need to create a new date based on todays today - so today is May, the new date should default to the 25th of June. If we are in June, the new date should default to 25th July.
I was thinking of using the :
nextMon = INTNX( 'Mon', Month(Today()), 1, 'S' );
to give me next month, but not sure how to create a value of 25Jun10
You were almost there with your code.
The 25th day of the next month is the first day + 24 days:
next_mon=intnx('month',today(),1) + 24;
The 2025 SAS Hackathon Kicks Off on June 11!
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.