If I make a gridded layout in ODS, I have problems controlling the page breaks. I have made a simplified piece of code that illustrates my problem, see below. The gridded layout below makes 2 rows and 1 column. Because row 2 takes up more than a whole page, a page break comes after row 1. But I would like to suppress this page break. Does anybody know how to do that? ods pdf file="C:\Temp\test.pdf" startpage=never; ods layout gridded rows=2 columns=1; ods region style=[backgroundcolor=#BDC3C7 font_size=20]; ods pdf text="Test header"; ods region; proc print data=sashelp.class; run; proc print data=sashelp.class; run; proc print data=sashelp.class; run; proc print data=sashelp.class; run; proc print data=sashelp.class; run; proc print data=sashelp.class; run; proc print data=sashelp.class; run; ods layout end;
... View more