Specify a starting page number

B

Byron

I know that I can assign a page number to a page with:
Me.Page = 2

but, when I do this, the total number of pages remains at 1.

If there a way to start a report with a specified page
number and also have the Pages total to show the total
number of pages with the specified starting page number.

Thanks,

Byron
 
M

Marshall Barton

Byron said:
I know that I can assign a page number to a page with:
Me.Page = 2

but, when I do this, the total number of pages remains at 1.

If there a way to start a report with a specified page
number and also have the Pages total to show the total
number of pages with the specified starting page number.

If you want the page numbering to start at N, then the last
page would be =Pages + N -1
 
Top