Hello Experts,
I have recently awared that ODS excel became available to SAS users to produce native excel file(xlsx) that can insert charts. I have done that successfully on the EG.
I am just wondering when it comes to stored process, how do you make the following codes work if you use streaming output in stored process.(I do not want to save any excel output and just want to display it with AMO)
ods excel FILE="c:\a.xlsx"
options(sheet_interval="none"
sheet_name="CARS summary"
);
proc means data=sashelp.cars;
var msrp invoice;
run;
ods excel options(sheet_interval="none"
sheet_name="graph");
proc sgplot data=sashelp.cars;
histogram msrp;
run;
ods excel close;
Thanks