Hi I need help to append 24 sas tables. I would like to write a macro that appends 24 tables. How do I create a do loop with the least amount of typing. Thanks
proc sql;
create table master as
select * from table1
union all
select * from table2
union all
select * from table3;
quit;