BookmarkSubscribeRSS Feed
Melk
Lapis Lazuli | Level 10

As part of an if-then statement, I need to flag observations with certain codes in any of 25 variables dx1-dx25. What is the best way to do this?

 

y=0

if not missing(x) and...

 <something translating to 123 or 234 in any of dx1-dx25>

...then y=1

end;

run;

 

 

 

 

 

 

3 REPLIES 3
Reeza
Super User

Double arrays. One with the list of values you’re looking for and a second with the dx. 

 

Then loop through the smaller array and use WHICHC to search for the values. Use a LEAVE/BREAK to exit the loop once the flag is set. 

 

Another approach would be to make it a long data set than it’s a very easy WHERE filter on the query. 

Melk
Lapis Lazuli | Level 10

Can I use double arrays if this is one part of multiple ands in an if-then statement?

 

i.e.

 

y=0;

if not missing(x)

  and age>=18

  and died = 0

  and <array statement here??>

then do;

y=1;

end;

run;

 

 

Reeza
Super User

You can nest or add diff criteria just have to make sure the order is correct. 

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

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