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.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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