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

Is this possible to do in Enterprise Guide filter?   I usually do a date compare in a filter like this that works fine:

 

datepart(exit_date) >= '15Aug2017'd

 

However I would like the to set it up so the year is dynamic, something like:

 

'15Aug' || PUT(YEAR(Date()-181), 4.)

 

This code produces the correct character format I want 15Aug2017, but I can't just put a 'd' at the end to assign it as date constant for comparison.   Any suggestions would be much appreciated.  Thanks, Kenny.

 

EG 6.1

SAS 9.4

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Use the input() function to convert the string to a date:

datepart(exit_date) >= input('15Aug' || PUT(YEAR(Date()-181), 4.),date9.)

Or use the intnx() function to do date calculations:

datepart(exit_date) >= intnx('year','15Aug2017'd,-181,'s');

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

Use the input() function to convert the string to a date:

datepart(exit_date) >= input('15Aug' || PUT(YEAR(Date()-181), 4.),date9.)

Or use the intnx() function to do date calculations:

datepart(exit_date) >= intnx('year','15Aug2017'd,-181,'s');
kgflynn
Fluorite | Level 6

Thanks!  That works perfectly.

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