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 (June 2009, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 18 Jun 2009 02:28:20 -0700
Reply-To:     RolandRB <rolandberry@HOTMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         RolandRB <rolandberry@HOTMAIL.COM>
Organization: http://groups.google.com
Subject:      Re: proc report within ODS throwing a page every 100 obs
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset=ISO-8859-1

On 18 Jun., 10:37, gerhard.hellrie...@T-ONLINE.DE (Gerhard Hellriegel) wrote: > you should set the pagesize (ps) to a higher value. > Perhaps like: > > options ps=9999; > > Note that this is global and is for all following list-procs > > Gerhard

Thanks. It worked.

> On Thu, 18 Jun 2009 01:13:17 -0700, RolandRB <rolandbe...@HOTMAIL.COM> > wrote: > > > > >I have to use proc report within ODS because I need to see the obs > >column and use the "N" option so my code is as below. But I have a > >problem in that after every 100 obs within the pageby group it throws > >a page when I don't want it to. I see no option I can use to stop this > >and I don't know why it should do this in any case. Any ideas? > > >ODS LISTING CLOSE; > >OPTIONS NOBYLINE; > >ODS PDF FILE=out2; > >TITLE 'WVER: #BYVAL(WVER) WVERDT: #BYVAL(WVERDT)'; > > >PROC PRINT DATA=temp N ; > > BY wver wverdt ssccd sscsdc ssc ; > > PAGEBY ssccd; > > VAR ssccd sscsdc ssc sscsub ctpn ctllt cting ; > >RUN; > > >TITLE1; > >OPTIONS BYLINE; > >ODS PDF CLOSE; > >ODS LISTING;- Zitierten Text ausblenden - > > - Zitierten Text anzeigen -


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