Page Numbering in Microsoft Access

L

lhein@nic

How do I set page numbering to begin with a number other than 1? For
instance, I have several separate reports in a database that I would like to
print as one report and number consecutively so the first report would be
page 1-10, second report 11-20, etc. I cannot find an answer to this one and
am hopeful someone out there has tried this. Thank you!
 
A

Allen Browne

You can set the Page property of the report in its Open event, e.g.:
Me.Page = 11

Another approach is to create another report, and add the reports as
subreports. Use the Page Footer of the main report to show the page number.
 
Top