I have multiple datasets, I want to run the same code for each and then combine them in one dataset. Can do that in one step?
data a; set dx_md_01;
where name in (druga, drugb, drugc);
run;
data b; set dx_md_02;
where name in (druga, drugb, drugc);
run;
data c; set dx_md_03;
where name in (druga, drugb, drugc);
run;
proc append base= a data=b;run;
proc append base= a data=c;run;
data all; set dx_md_01 dx_md_02 dx_md_03; where name in (druga, drugb, drugc); run;
data all; set dx_md_01 dx_md_02 dx_md_03; where name in (druga, drugb, drugc); run;
Thank you!
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 save with the early bird rate—just $795!
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.