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
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 -
|