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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.