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!
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.