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:         Wed, 5 Sep 2007 13:40:40 +1200
Reply-To:     templerr@clear.net.nz
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         templerr <templerr@CLEAR.NET.NZ>
Subject:      Re: ODS PDF - Proc Report with Panels
Comments: To: Bruce J <chimanbj@GMAIL.COM>

use:

ods pdf columns=3 ;

----- Original Message Follows ----- > Is this possible? Can I create columns (panels) in Proc > Report for the PDF destination? > > I'm doing something as simple as this, with ODS PDF code > around it: > > proc report data=sasout.freq nowd headline split="/" > panels=99 pspace=6; > column field value count percent; > define field / group "Field" ; > define value / group "Field/Value" order=internal; > define count / sum format=comma12. "Number of/Discharges" > ; > define percent / sum format=percent9.2 "Percentage > of/Discharges" width=15; > break after field / skip; > compute before field / style=[font_size=3pt > background=cxBDB76B]; > line ' '; > endcomp; > quit; > > > Is there a style or tagset that will allow me to use this, > or is it going to get...complicated? > > > Bruce A Johnson > Data Reporting Specialist, Senior > Thomson Healthcare > > Phone: (847) 424-4249 > Fax: (847) 332-1768 > http://www.thomsonhealthcare.com > > Please note my new email address: > bruce.johnson@thomson.com > Solucient is now part of Thomson Healthcare.


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