So I am not super familiar with ODS, but I am trying to output a proc freq output and proc print into a pdf. I currently have the data so that it is appearing in 2 columns. Below is the code that is working so far: ods pdf file="Pathway.pdf" Style=Meadow startpage=never columns=2; TITLE "Template"; proc freq data = final; where district = 'XXXX'; table Status/missing list nopercent; run; Proc Print Data=Associate_Breakout noobs; Run; ODS PDF CLOSE; TITLE; What I want to do, is center the proc freq at the top (Since it is a smaller overview of the rest of the data) and the have the proc print be in 2 columns beneath it? Is this possible? Thanks in advance!
... View more