tags:

views:

39

answers:

1

I've used PROC TABULATE to generate 5 different tables and wrote those to a PDF document with ODS. Each table is on a different page. But the boss wants 3 of the smaller tables on the same page and wants the 2 bigger tables to each be on one page.

Is there a way to control the page breaks with PROC TABULATE to get more than one table on a page?

A: 

You could use paneling to show multiple tables per page. See Paneling ODS output.

Banjer
Thanks, that helped me find a solution. The HTML paneling is cool but I was looking for PDF. Another set of documents discussed ODS layout and the startpage option for PDF.A simple solution is to put a "startpage=no" statement in the ODS PDF declaration. This turns off the auto-pagination of starting a new page for each table. Then insert a "ODS PDF startpage=now;" statement when you want to start a new page.
George Tbrain
Interesting. That sounds like a nice simple solution that I'll have to keep in mind.
Banjer