|
Hi Bruce
PANELS is a SAS monospace output only option. You want the columns=
option on your ods pdf statement.
ods pdf file='C:\wherever\whatever.pdf' columns=2;
I suggest also setting the columnwidth element on a report style
option statement so that each 'panel' (column) of your pdf output is
the same width. Otherwise it can look a little dodgy.
proc report
data=whatever ...other options... style(report)=[outputwidth=100%];
...other statements...
run;
Enjoy
Tree Frog
|