October 2009
Beginner
636 pages
13h 35m
English
Applying style attributes to PROC TABULATE output is similar to applying them in PROC REPORT. All you have to do is add STYLE= options to whichever part of the output you want to change.
There are a number of ways you can use STYLE= in PROC TABULATE. To keep things simple, we look at just one technique: adding STYLE= options to the CLASS and VAR statements. We start with a table similar to the previous examples.
ODS HTML BODY='tabstock.html' STYLE=sasweb;
proc tabulate data=furniture;
class Type Material;
var Price;
table Type='Table Type'*
Material='Construction',
Price='Average Price'*Mean=" "*f=dollar8.;
run;
ODS HTML CLOSE;
This code produces the output shown in Figure 19.22 ...
Read now
Unlock full access