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

I am wondering how to subset multiple rows in a dataset in SAS, any codes recommended? Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Take a look at the WHERE statement.  That's a common tool for the task, and can be used in both DATA and PROC steps.  Its chief limitation is that it must base the subsetting decisions on variables that already exist in the incoming data set.

 

If you need to perform calculations first, and base the subsetting on the calculated values, take a look at the IF statement.  (Not IF/THEN.)  It's valid in a DATA step only.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

Please supply some example "have" and "want" data rows to illustrate your question.

Subsetting datasets as such is a very easy task, so you seem to have some additional requirements.

Astounding
PROC Star

Take a look at the WHERE statement.  That's a common tool for the task, and can be used in both DATA and PROC steps.  Its chief limitation is that it must base the subsetting decisions on variables that already exist in the incoming data set.

 

If you need to perform calculations first, and base the subsetting on the calculated values, take a look at the IF statement.  (Not IF/THEN.)  It's valid in a DATA step only.

LinusH
Tourmaline | Level 20

Another option if you wish to subset based on a list of values: use SQL inner join/sub-query with a look-up table.

Data never sleeps

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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