Now I better understand the question, and I learned some TABULATE syntax too!
I noticed that in the LISTING destination the word AND is used as in:
a, b, and c
for the page label. In PDF each is comma separated as in:
a, b, c
This is demonstrated in the following code, which mimics yours:
[pre]ods pdf file='c:\temp\shoes.pdf' style=default;
PROC TABULATE DATA=sashelp.shoes;
VAR sales;
CLASS region product subsidiary;
TABLE region*product,
subsidiary,
sales*sum;
RUN;
ods pdf close;[/pre]
I have not yet found a style attribute that will solve the problem however.
... View more