Features: |
PROC TABULATE statement options: STYLE= CLASS statement
|
Other features: |
ODS HTML statement |
ods html file="tabstyle.html";
proc tabulate data=sashelp.class style={background=red};
class sex age;
table sex*{style={background=blue}} all, age;
title 'Data Cell Styles in Merged Cells';
run;
proc tabulate data=sashelp.class style={background=red};
class sex age;
table sex*{style={background=blue}} all, age/nocellmerge;
title1 'Data Cell Styles with NOCELLMERGE Option';
run;
ODS HTML close;