BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
kajal_30
Quartz | Level 8

 

IND_F = ID1 >= ID2 >= ID3 ;

One of the program says as below can someone please help what does that mean?

They are all date values.

 

I am seeing value of IND_F = 1 for few records not sure how ? 

 

Regards

kajal

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

Below is logically the same formulated a bit more traditionally

  if (ID1 >= ID2) and (ID2 >= ID3) then IND_F =1;
  else IND_F = 0;

The code you've got is a bit more "shorthand". Everything right of the first equal sign is a logical expression for which SAS returns 1 if true and 0 if false.

 

View solution in original post

4 REPLIES 4
Astounding
PROC Star

This is a shortcut, meaning:

IND_F = (ID1 >= ID2) and (ID2 >= ID3) ;

It returns a 0 or a 1, depending on the comparisons.  When both comparisons are true, IND_F receives a value of 1.  Otherwise it receives a value of 0.

 

kajal_30
Quartz | Level 8

Thank you so much

Patrick
Opal | Level 21

Below is logically the same formulated a bit more traditionally

  if (ID1 >= ID2) and (ID2 >= ID3) then IND_F =1;
  else IND_F = 0;

The code you've got is a bit more "shorthand". Everything right of the first equal sign is a logical expression for which SAS returns 1 if true and 0 if false.

 

kajal_30
Quartz | Level 8

thank you so much 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 4 replies
  • 348 views
  • 2 likes
  • 3 in conversation