| Date: | Tue, 14 Sep 1999 10:54:06 GMT |
| Reply-To: | Tom Clarke <tom.clarke@ABBOTT.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Tom Clarke <tom.clarke@ABBOTT.COM> |
| Organization: | Abbott Laboratories |
| Subject: | Re: Changing the pagenumber in PROC Report |
|---|
You could try the "PAGENO=" option. I think this works in proc report.
The PAGENO=n option restarts numbering at the value n for the next page of
output produced by SAS.
Rasmus Haubro Rohde <rohde@daimi.au.dk> wrote in article
<37DDF3A0.167E@daimi.au.dk>...
> Is there anyway that I can write something like:
>
> PROC REPORT /* bla bla bla */
>
>
> compute before var;
> if we_need_to_start_from_one = 1 then
> _pageno_ = 1;
> endcomp;
>
> END;
>
> Or do I need to generate my own title-header with the pagenumber in it?
>
> --
> /Rohde
>
|