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

I have two datasets, I would like to use a list of variables from one to pull more detailed information from the first.  An example of the code is attached, I would like to use the &list to pull any number of variables from the list.


1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

So you basically simply want to accomplish a join, but using a list? i.e., if an id is in b, you want the corresponding record(s) from A?

Approximately how many IDs do you have in B?

View solution in original post

4 REPLIES 4
art297
Opal | Level 21

Not sure what you're looking to do with the list. Can you provide and example of how you would like to use such a list?

Steelers_In_DC
Barite | Level 11

I have a large dataset A and a small dataset B.  I want to get a list of ID's from B to pull all the history from A.

I think I've found another step in the process but am still not sure how to use the list:

data test;

do i=1 by 1 while (scan("&list.",i) ne '');

     list=scan("&list.",i);

     output;

end;

drop i;

run;


art297
Opal | Level 21

So you basically simply want to accomplish a join, but using a list? i.e., if an id is in b, you want the corresponding record(s) from A?

Approximately how many IDs do you have in B?

Steelers_In_DC
Barite | Level 11

That's it and I feel silly now over thinking it.  It's just a join, the number of IDs will vary.  I think I know what I'll have to do now.

Thank you for your help.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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