Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Info Desktop taking control of page numbering in Report Packages.

Status
Not open for further replies.

wprecil

Programmer
Mar 7, 2003
1
0
0
US
I am creating a report package, each report in the package has its page numbering in the page footer. When I run the package the page numbers become cummulative.

Is there a way to have each report reset the page number back 1?
 
I assume this:

"Is there a way to have each report reset the page number back 1?"

means set it back to 1, not just back 1.

I can't test this, but you might resolve this by selecting reset page number after in the report footer.

The other way would be to manually create page numbers in each report using a variable, as in:

In the report header create a formula as in the following:

whileprintingrecords;
numbervar PageNo :=0

In the page footer use:
whileprintingrecords;
numbervar PageNo := PageNo+1;
PageNo

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top