BookmarkSubscribeRSS Feed
PravinMishra
Quartz | Level 8

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

3 REPLIES 3
Reeza
Super User

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;

Karthikeyan
Fluorite | Level 6

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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1538 views
  • 1 like
  • 4 in conversation