BookmarkSubscribeRSS Feed
pawan
Obsidian | Level 7


I would like to have piece of code where I can pick data from multiple datasets and load the same into multiple sheets or tabs of one excel file. Please let me know if this is possible using PROC DATASETS. Thanks, Pawan

1 REPLY 1
sam369
Obsidian | Level 7

Hi Pawan,

some one may come with better solution.. Here is the sample Code

/*First sql creating data set name in to macro from work library, if you have in diffrent location change the LIBname*/

proc sql;

select memname into : Ds separated by ' '

from dictionary.columns

where libname='WORK';

quit;

%put &Ds;

%let sqlobs=&sqlobs;

%macro export;

%do i=1 %to &sqlobs;

%let dsn=%scan(&DS,&i);

proc export data=&dsn outfile="\excelpath\sample.xls"

                                 dbms=excel replace;

                                 sheet="&dsn";

run;

%end;

%mend;

%export

Thanks

Sam

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

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 1195 views
  • 0 likes
  • 2 in conversation