BookmarkSubscribeRSS Feed
Xamius32
Calcite | Level 5

So I am trying to combine a bunch of tables into one based on certain conditions. I am not sure how I would write a macro or do loop for it so I dont have to repeat the union step for each table.

This is what I have so far, and would need to do for ~80 tables

create table test as select monthend, loan_no, balance, portfolio, DELQIND180 from lp.lp_200512

where DELQIND180 ne "0" and portfolio="CORE" or portfolio="NAT"

union

select monthend, loan_no, balance, portfolio,  DELQIND180 from lp.lp_200601

where DELQIND180 ne "0" and portfolio="CORE" or portfolio="NAT"

union

select monthend, loan_no, balance, portfolio,  DELQIND180 from lp.lp_200602

where DELQIND180 ne "0" and portfolio="CORE" or portfolio="NAT";

quit;

4 REPLIES 4
yeshwanth
Fluorite | Level 6

Hello,

Try this...

Data final;

set lp_200512 - lp_200600; // ( Specify the Range here )

run;


// This prog will append all the data sets from lp_200512 to lp_200600..

Xamius32
Calcite | Level 5

I forgot to mention, it is by month/year, so its 200512, 200601, 200602...200612, 200701, etc.

yeshwanth
Fluorite | Level 6

Okey,

Try this

Data final;

set lp_200512 -- lp_200712; // ( Specify "--" will append all the data sets which are between 200512 to 200712)

run;

Astounding
PROC Star

If you want to combine ALL the data set names that have the right naming pattern, you could use:

data want;

   set ip.ip_20: ;

   where ...;

run;

The WHERE statement would be applied to all the data sets.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 772 views
  • 0 likes
  • 3 in conversation