I find it interesting that the code works (probably not creating the table you want) when you remove one comma: .... weight = "weight" *mean='' *f=comma24.0 ) , (sex='') ,(age='').... Without the comma, the code runs. With the comma, it doesn't. 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