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