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