Hi,
I have below table and I want to create a single table out of that.
table_1,table_2,table_3,table_4,table_4,table_5.
I know I can use set statement in below way to concatenate it.
data table;
set table_1 table_2 table_3 table_4 table_4 table_5.;
run;
but don't want to do like this. I want to combine it using loop so that I don't have to write every table name.
Thanks
Don't be loopy.
data table;
set table_1 - table_5;
run;
Or to combine all tables that start with table_ use colon modifier.
data table;
set table_;;
run;
Where do you get the table names from? Depending on the way you do this, you could write a piece of code that creates the list of tables dynamically.
If you still want to try loop..
%macro table_create;
data
table
;
set
%do i = 1 %to 5
table_&i.
%end;
;
run;
%mend table_create;
%table_create;
Thanks
Karthik
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.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.