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.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 2135 views
  • 0 likes
  • 2 in conversation