Weird, my output changed from a number to this: RULE_ORDER SCORE_IMPACTING RULE_NM TOTAL
999.3 Y TOTAL BIDS VOLUME SAMPLED co03a Do I have the correct syntax for the Total variable? 226 ods tagsets.excelxp file="c:\users\ssbuechl\FinalData.xml" style=statistical options(embedded_titles='yes'
226! orientation='landscape' gridlines='yes' THOUSANDS_SEPARATOR=',');
NOTE: Writing TAGSETS.EXCELXP Body file: c:\users\ssbuechl\FinalData.xml
NOTE: This is the Excel XP tagset (Compatible with SAS 9.1.3 and above, v1.122, 01/04/2011). Add options(doc='help') to the
ods statement for more information.
227 proc print noobs data=FinalData;
228 * format Rule_Order best6. total comma10. _: comma10. null comma10.;
229 var rule_order score_impacting rule_nm;
230 var total / style={tagattr='format:comma'};
231 var _: null;
232 run;
... View more