BookmarkSubscribeRSS Feed
David_Billa
Rhodochrosite | Level 12

I'm trying to understand the WHERE clause below and I want to tweak the where clause to include the condition

put(INITIAL_DT,yymmn6.) <= put(REPORTING_DT,yymmn6.) only when REPORTING_METHOD ^="ACS"

If REPORTING_METHOD ="OCS" then I want to include this condition put(INITIAL_DT,yymmn6.) >= put(REPORTING_DT,yymmn6.)

 

data test;
set IFR.ADS_OUTPUT;
where (REPORTING_METHOD ^="ACS" or put(INITIAL_DT,yymmn6.) <= put(REPORTING_DT,yymmn6.))
 & 
(REPORTING_METHOD ^="OCS" or put(INITIAL_DT,yymmn6.) >= put(REPORTING_DT,yymmn6.));
run;

I want to tackle this logic only using WHERE clause. Any help?

1 REPLY 1
Kurt_Bremser
Super User

You've got your "and" and "or" wrong. According to your description, the condition should be

where
  REPORTING_METHOD ^= "ACS" and put(INITIAL_DT,yymmn6.) <= put(REPORTING_DT,yymmn6.)
  or 
  REPORTING_METHOD ^= "OCS" and put(INITIAL_DT,yymmn6.) >= put(REPORTING_DT,yymmn6.)
;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 1 reply
  • 269 views
  • 0 likes
  • 2 in conversation