Setting starting page number

N

Nancy

I am printing a report that is part of a larger document.
How can I print an Access report and have the page number
start with 9 (instead of 1)?
Thanks!
 
M

Marshall Barton

Nancy said:
I am printing a report that is part of a larger document.
How can I print an Access report and have the page number
start with 9 (instead of 1)?

You could also use the report header's Format event to set
it.
Me.Page = 9
 
Top