Hi,
I have multiple proc procedures that produce just a table. I am trying to fit as many proc outputs as it can fit into one page instead of one table per page, just to save trees! could you please help me with that?
My code structure is following.
ods pdf file =” “ startpage=No;
Proc 1
title 1
Proc 2
title 2
Proc 3
title 3
Proc 4
title 4
.
.
.
ods pdf close;
My code partially achieves what I wanted to do; however, only one title (title 1) prints on one page, instead title for each table.

Thanks for the help!