BookmarkSubscribeRSS Feed
David_Billa
Rhodochrosite | Level 12

Could you please help me understand the meaning of the expression below?

 

REPORTING_DATE <= CASHFLOW_DT  >= ACCOUNT_DT
3 REPLIES 3
ChrisNZ
Tourmaline | Level 20

It's the same as

REPORTING_DATE <= CASHFLOW_DT and CASHFLOW_DT >= ACCOUNT_DT

 

Tom
Super User Tom
Super User

@David_Billa wrote:

Could you please help me understand the meaning of the expression below?

 

REPORTING_DATE <= CASHFLOW_DT  >= ACCOUNT_DT

Use it in a WHERE clause and SAS will show you in the LOG how it is interpreted.

1906  data test2;
1907    set test;
1908    where REPORTING_DATE <= CASHFLOW_DT  >= ACCOUNT_DT ;
1909  run;

NOTE: There were 1 observations read from the data set WORK.TEST.
      WHERE (REPORTING_DATE<=CASHFLOW_DT) and (CASHFLOW_DT>=ACCOUNT_DT);

It is a little unusual to see this construct used when the inequalities point in different directions.  Another way to get the same would be something like:

max(REPORTING_DATE,ACCOUNT_DT) <= CASHFLOW_DT 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 543 views
  • 3 likes
  • 4 in conversation