Like the last person to respond, I have not used the add in. But this is the process that we use to create dozens of worksheets in a single workbook, based on results from SAS datasets. It could perhaps be of use to you? data _null_;
call symputx('nowyear', year(date()));
call symputx('nowmonth', month(date()));
call symputx('nowday', day(date()));
call symputx('nowhour', hour(datetime()));
call symputx('nowminute', minute(datetime()));
run;
%let myvar = %str(&nowyear)_%str(&nowmonth)_%str(&nowday)_%str(&nowhour)_%str(&nowminute);
%let title = "F:\Main\Studies\ICO_DUALS\EnrollBuckets\Documents\EN_%str(&myvar).xlsx";
PROC EXPORT DATA=RPT_T1 outfile= &title dbms=xlsx replace;
sheet="RPT_T1_TRAN";
run;
PROC EXPORT DATA=RPT_T2 outfile= &title dbms=xlsx replace;
sheet="RPT_T2_TRAN";
run;
PROC EXPORT DATA=RPT_T2_OTHERREG outfile= &title dbms=xlsx replace;
sheet="RPT_T2_OTHERREG";
run; Repeat the export process for however many sheets are required in the workbook.
... View more