LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (September 2007, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 4 Sep 2007 15:58:51 -0700
Reply-To:   Tree Frog <tree.frog2@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Tree Frog <tree.frog2@HOTMAIL.COM>
Organization:   http://groups.google.com
Subject:   Re: ODS PDF - Proc Report with Panels
Comments:   To: sas-l@uga.edu
In-Reply-To:   <006401c7ef34$9e6670c0$0d15c79d@wks.tsh.thomson.com>
Content-Type:   text/plain; charset="us-ascii"

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


Back to: Top of message | Previous page | Main SAS-L page