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;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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