Adding additional page numbers help.

bill crumpton

Registered User.
Local time
Today, 11:22
Joined
Apr 20, 2000
Messages
105
I have a report that prints from data entered into a form. The page numbers fine on the report, however there are times when I have to attach other pieces of paper to the printed report and number them consecutively with the Access report so now the page numbers do not match. Is there a way in Access I can tell the report to number the total number of pages to a certain number instead of printing the actual number of pages? Any help is appreciated.

BAC

[This message has been edited by bill crumpton (edited 11-07-2001).]
 
Sorry I don't know if Access can do it but one workround is to number your inserts with a suffix, page 12 (a) etc.
 
The following is the standard controlsource used to print "page x of y"

="Page " & [Page] & " of " & [Pages]

You would simply need a variable that contained the number of extra pages. You would then change the controlsource to:

="Page " & [Page] & " of " & [Pages] + YourVariable
 

Users who are viewing this thread

Back
Top Bottom