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;
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.
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.
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.
Ready to level-up your skills? Choose your own adventure.