BookmarkSubscribeRSS Feed
ballewnick
Fluorite | Level 6

Thanks Astounding!

 

Your last post clarified the last couple points I was getting hung up on and I was able to make the few changes I needed to get the program to run. Thanks for also explaining the different styles or arrays and the advantages of using the style you suggested.

Reeza
Super User

This is much, much easier if you have your data in a long format rather than a wide format. As mentioned, only exact matches will be found. 

 

If you transpose your data and place the codes you're looking for into a dataset, list_chosen then this would work:

 

 

proc sql;
create table want as
select *
from have 
where idx in (select idx from list_chosen);
quit;

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 16 replies
  • 12605 views
  • 6 likes
  • 6 in conversation