BookmarkSubscribeRSS Feed
Raman
Calcite | Level 5

Hi all

I have n number of excel sheet.

Each excel sheet has 2 worksheet.

I want to prepare master sheet where each excel sheet worksheet 1 is concatenated and put in to master excel worksheet 1

and similarly each excel sheet worksheet 2 is combined and put into same master excel but worksheet 2.

All teh sheet has same column names and that is not a problem

Can any of you let me know is it possible to do this using SAS and if so can you let me know how to approach this ?

Thanks

Ramanan

3 REPLIES 3
Ksharp
Super User

Yes. You can do it . Using Libname + excel to operate these Sheets just like SAS datasets.

Raman
Calcite | Level 5

thanks Ksharp...

If it is possible can you pls post the sample code  here..that would be useful for me to develop from here,,,

Ksharp
Super User

OK. Here is an example.

libname a1 excel 'c:\a1.xls' getnames=yes;
libname a2 excel 'c:\a2.xls' getnames=yes;
data sheet1;
 set a1.'Sheet1$'n a2.'Sheet1$'n;
run;
data sheet2;
 set a1.'Sheet2$'n a2.'Sheet2$'n;
run;


proc export data=sheet1 outfile='c:\main.xls' dbms=xls ;
                         sheet='Sheet1'; putnames=yes; run;
proc export data=sheet2 outfile='c:\main.xls' dbms=xls ;
                         sheet='Sheet2'; putnames=yes; run;

libname _all_ clear;

Ksharp

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2721 views
  • 0 likes
  • 2 in conversation