I am trying to get some datasets printed to a PDF. Can anyone tell me how I can fit the last 4 proc print
statements into a 2 x 2 on a single page, while leaving the first one on it's own page (as it is now)?
title;
options nodate nonumber nocenter orientation=portrait spool;
ods pdf file="I:\ASR\201410\bio.pdf" color=yes style=fancyprinter;
ods pdf startpage=NEVER;
ods escapechar='';
ods pdf text='S={just=CENTER preimage="I:/asr/logo.png" posttext=""';
ods pdf text= "S={just=c font_weight=bold font_size=12pt font_face=Arial}Fall 2013 - Annual Statistical Report";
ods pdf text= "S={just=c font_weight=bold font_size=12pt font_face=Arial}Department of Biology";
proc print data=IntApps_AY_cnt_p noobs; TITLE "Applications"; run;
ods pdf startpage=now;
proc print data=enroll_cnts_np noobs; TITLE "New Student Enrollment"; run;
ods pdf startpage=now;
proc print data=enroll_cnts_p noobs; TITLE "Total Enrollment"; run;
ods pdf startpage=now;
proc print data=TuitionScholarships_cnt_p noobs; TITLE "Stipends"; run;
ods pdf startpage=now;
proc print data=asr_degs_cnts_p noobs; TITLE "Academic Year 2012-2013 Awarded Degrees"; run;
ods layout end;
ods all close;
Thanks
JT