SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Viveme789
Fluorite | Level 6

Hi all!

 

I have a dataset at hand that looks like the following:

 

ID   MED1     MED2    MED3   MED4

1       892        384 .     454       345

2       802        394 .     434       233

3       852        384 .     334       599

 

I want to subset the dataset so that only patients with meds in {892, 334, 599, 384} remains. I don't want to repeat the list of 4 codes in all 4 variables in the data step. Can anyone show me how to do it? Thanks. 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

There are two approaches that work, there may be an easier one but IN didn't seem to work for me for two lists.

 

1. Create two arrays, loop through searching for a value, if found, output and exit the loop.

 

delete_array_method.JPG

 

The second approach transposes the data to a long format - much easier to use/query in the long run 🙂

Then you can either keep it long or you could use that list to generate back the same answer as the first method.

 

delete_transpose_diag.JPG

View solution in original post

5 REPLIES 5
Reeza
Super User

Please don't post the same question multiple times. 

Are all your values numeric as in your example or are they character values?

Reeza
Super User

There are two approaches that work, there may be an easier one but IN didn't seem to work for me for two lists.

 

1. Create two arrays, loop through searching for a value, if found, output and exit the loop.

 

delete_array_method.JPG

 

The second approach transposes the data to a long format - much easier to use/query in the long run 🙂

Then you can either keep it long or you could use that list to generate back the same answer as the first method.

 

delete_transpose_diag.JPG

Viveme789
Fluorite | Level 6

Thank you so much! That's an nice answer. 

novinosrin
Tourmaline | Level 20

@Viveme789 Requesting you to please mark the question as answered and close the thread. Thank you!

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.

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
  • 5 replies
  • 1255 views
  • 0 likes
  • 3 in conversation