BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
BenBrady
Obsidian | Level 7

i want to subset my dataset by where multiple variables are equal to the number 1. I have been doing this by using the following code:

 

data want;

set have;

where group=1 or fish-=1 or net=1 or food=1;

run;

 

I was wandering if there was a shorter way to write this, as it would be much longer if there were a lot of variables. i.e something along the lines of writing all the variables out and only having to write one '=1' in the code.

 

Cheers

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

WHICHN()

 

where whichn(1, var1, var2, var3, ... );


If you can use IF instead variable lists can be used:

 

if whichn(1, of var:)>0;

 

 

View solution in original post

2 REPLIES 2
Reeza
Super User

WHICHN()

 

where whichn(1, var1, var2, var3, ... );


If you can use IF instead variable lists can be used:

 

if whichn(1, of var:)>0;

 

 

novinosrin
Tourmaline | Level 20

@BenBradyIf you wanna play:

 

data have;

a=1;

b=0;

c=0;

output;

a=0;

b=0;

c=0;

output;

run;

 

data want;

set have;

array n _numeric_;

if 1 in n;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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