Got it already. Posting for future searchers. Trick was specifying style.. ods tagsets.excelxp file='c:\temp\junk.xml' style=sasweb options (SHEET_INTERVAL="NONE" absolute_column_width = '14,11,6,6,6,6,6,6,6,6,6,6,6,6,6' embedded_titles='yes' TAGATTR="format:excel-format" fittopage='yes' orientation='Landscape'); proc tabulate data=delq1 missing; class portfolio monthend cycledelinquency; var totalbalance ; tables (portfolio='' all='')*( totalbalance = "Balance" *sum='' *f=comma24.0 *{style={tagattr="format:###,###,###"}} totalbalance = "Rate" *colpctsum='' *f=pct. ),(cycledelinquency='' all) ,(monthend='') / box = '' row=float; format cycledelinquency delq.; run; ods _all_ close;
... View more