Hello experts,
I am having trouble to display outputs into multiple tabs in excel when the stored process report is opened by AMO like following;
The stored process below is created to produce two tables, a and b.
when I use AMO to open the stored process report, I want to display table a in sheet1 and table b in sheet2 in one excel file. How do I achieve that???
proc print data=a;
run;
proc print data=b;
run;
Thanks