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 (July 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 12 Jul 2007 17:38:46 +0200
Reply-To:   Andre Wielki <wielki@INED.FR>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Andre Wielki <wielki@INED.FR>
Subject:   Re: Proc Report and ODS: Page Orientation
Comments:   To: Wing9897@HOTMAIL.COM
In-Reply-To:   <1184242071.377471.222250@d55g2000hsg.googlegroups.com>
Content-Type:   text/plain; charset=ISO-8859-1; format=flowed

Sorry but Sas has never permit mixing the orientation in a PDF ods output

You have to specify your orientation before ods pdf sentence;

Your solution could be producing separate pdf and merging them with text commentary with acrobat full product or a free clone permitting this behavior.

HTH Andre

Wing9897@HOTMAIL.COM a écrit : > Hello, > > I have 2 reports and I would like the layout of the 1st report on the > 1st page to be portrait and the next report on the 2nd page to be > landscape. How can this be done? The code below does not produce the > desired results. Thanks. > > > ods pdf file="test.pdf"; > proc report data=sashelp.class nowd; > column Name Sex Age Height Weight; > define Name/ 'Name'; > define Sex/ 'Sex'; > define Age/ 'Age'; > define Height/ 'Height'; > define Weight/ 'Weight'; > run; > > ods pdf startpage=now; > options orientation=landscape; > > proc report data=sashelp.class nowd; > column Name Sex Age Height Weight; > define Name/ 'Name'; > define Sex/ 'Sex'; > define Age/ 'Age'; > define Height/ 'Height'; > define Weight/ 'Weight'; > run; > > ods pdf close; > >

-- Andre Wielki INED (Institut National d'Etudes Démographiques) 133 Boulevard Davout 75980 Paris Cedex 20 33 (0) 1 56 06 21 54 FRANCE


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