continuous page numbering w/multiple reports (1 Viewer)

brian189

Registered User.
Local time
Today, 00:58
Joined
Sep 4, 2000
Messages
10
I am printing multiple reports from a form button using vba. I want the first page number of each report to pick up where the previous report left off (if the first report was 8 pages long, I want to start the second report at page 9). Can anyone provide some help with this?

Thanks
Brian
 

jrs

New member
Local time
Today, 00:58
Joined
Aug 23, 2000
Messages
9
Brian,

I have a similar porblem and was searching for an answer. I noticed no one responded to your post from 2001.

Were you able to come up with a solution? If so, can you share it with me.

Thanks in advance

JR
 

Pat Hartman

Super Moderator
Staff member
Local time
Yesterday, 19:58
Joined
Feb 19, 2002
Messages
43,275
This article from the knowledge base should get you started.

Q100156 - ACC How to Specify a Custom Starting Page Number for a Report

However, it shows a technique that requires prompting. What you need to do is to create a global variable and in the ReportFooter routine of each report, store its final page number in the variable. Then rather than prompting as the kb article suggests, use the variable stored by the previous report.
 

Users who are viewing this thread

Top Bottom