Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 14
Program 14o
Style elements in the TABULATE procedure


*
  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;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections