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

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

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