ods pdf file='\\XXXXXXXXXXXXXXXX\onlyfirst.pdf' notoc; data test; set sashelp.shoes; rownum=_n_; run; data test1; set test; if rownum<34; run; data test2; set test; if rownum>33; run; proc report data=test1 nowd; column region subsidiary product sales inventory returns; title 'Title on First Page Only'; run; proc report data=test2 nowd; column region subsidiary product sales inventory returns; title; run; ods _all_ close;
... View more