Here's a sample code that works with my coworkers 9.2, but gives excel errors on 9.3 ods tagsets.excelxp file="c:\junk.xml" style=sasweb options (SHEET_INTERVAL="NONE" absolute_column_width = '14,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5' embedded_titles='no' PAGES_FITWIDTH="1" FitToPages="YES" orientation='Landscape'); ods tagsets.excelxp options (Sheet_Name = "Portfolio"); title'Delinquency Trends by Portfolio';*/; proc tabulate data=sashelp.class missing; class name sex age; var height weight; tables (name='')*( height = "height" *mean='' *f=comma24.0 weight = "weight" *mean='' *f=comma24.0 ),(sex='') ,(age='') / box = '' row=float; run; ods _all_ close;title;
... View more