Thanks Cynthia; I'm a little further. What I'm looking for is some way to have row and column banding. I don't think that's quite possible, so I've tried to use font colour as the the vertical banding method in the example that you sent. My changes are included below. I'm not able to make the row bands extend across the entire row. Please see the Capture.png file attached. I'd appreciate more of your great help. Thank you, Bill proc format; value $ctry 'GERMANY'='yellow' other='white'; run; ods html file='c:\temp\row_bands.xls'; proc tabulate data=sashelp.prdsale f=comma8.; title '2) Changing Style for Country and Division in Bands'; title2 'The parent for DIVISION classlev is COUNTRY classlev'; title3 'The COUNTRY classlev color is determined by the STYLE override'; * this will change COUNTRY and DIVISION levels to their respective colors; class country division/ style={background=green foreground=black}; classlev country / style={background=$ctry. foreground=black}; classlev division / style=<parent>; ** this will change all PRODTYPE levels to CYAN; class prodtype / style={background=cyan foreground=black}; classlev prodtype /style=<parent>{foreground=black}; var actual /style=<parent>{foreground=black}; ** note use of style=<parent> in row dimension; table country=' '*division=' '*{style=<parent>}, 'Actual'*(sum='Total' *[style=[foreground=black]] max='Max'*[style=[foreground=green]]) box={label="Banding Row Colors for Country and Division"};* style_precedence=row; run; ods _all_ close;
... View more