BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
ybz12003
Rhodochrosite | Level 12

Hello,

I'm curious if I could use one PROC SQL step to achieve the two steps result below.  Thanks.

 

data underly1617;
 set underly1621_nodup; 
if year=1617; run;
proc sql noprint; select quote(trim(caseid)) into : UC_1617_list separated by ','  from underly1617; quit;
%put &UC_1617_list;
1 ACCEPTED SOLUTION

Accepted Solutions
maguiremq
SAS Super FREQ

You sure can. You would also need to add a WHERE clause after your FROM clause to subset only 1617 records.

 

Not sure what your data look like though and the number of records. Usually helps to post sample code.

View solution in original post

1 REPLY 1
maguiremq
SAS Super FREQ

You sure can. You would also need to add a WHERE clause after your FROM clause to subset only 1617 records.

 

Not sure what your data look like though and the number of records. Usually helps to post sample code.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 652 views
  • 0 likes
  • 2 in conversation