Hello and thanks for your time,
Im trying to make a excel report from a SAS table.
I need to place different tables on the same report sheet. ¿Its is possible to choose the lines and colums where I want my table to be placed?.
options center;
ods listing close;
ods tagsets.ExcelXP path="C:\"
file="MAY..xls" style=statistical;
%let page=%sysfunc(putn(tryal.cups));
ods tagsets.ExcelXP options(sheet_name="&page");
proc print data=tryal.cups5 noobs label split='*';
run; quit;
I would also like to set the width of each columns. If tryed several things but I canot make it.
Thanks¡