Hi,
I have a dataset:
ID Memb
1 12345
2 34567
3 45678
4 45632
5 54321
approximate 10,000 observations.
How to select these list of observations only ( 34567 45632 54321 65432 56789 32411 54623
54322 90987 98765 76543 89234 )
thanks in advance.
You have the code half written already.
data want; set have; where memb in ( 34567 45632 54321 65432 56789 32411 54623 54322 90987 98765 76543 89234 ) ; run;
View solution in original post
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.