Online File
Rick Aster: Professional SAS Programming Secrets: Contents
*
Professional SAS Programming Secrets
Program 14o
Style elements in the TABULATE procedure
*;
proc tabulate data=work.recordsales;
class channel format;
var unit retail;
keyword pctsum / style=[fontstyle=italic];
keylabel sum='Total' pctsum='Percent';
table channel*format all=[label='Totals'
style=[fontstyle=italic color=black backgroundcolor=white]]
*[style=[color=black backgroundcolor=white]],
(unit retail)*(sum*f=comma9.1
pctsum*[style=[fontstyle=italic]])
/ box=[label="RIAA 2009 Year-End"
style=[fontweight=medium fontsize=9pt]]
style_precedence=row;
run;