Hi:
If this were Proc Report in SAS 9.2, you might use the new STYLE/MERGE in a CALL DEFINE statement, but alas, TABULATE does not have that capability. The only thing you can do with TABULATE is tell it which dimension "wins" in the case of a collision between a row style specification and a column style specification:
[pre]
table page-dim,
row-dim,
col-dim / style_precedence=????? ;
[/pre]
Where you plug PAGE or ROW or COL where I have the ?????
cynthia