Starting Page counter on 2nd Page

T

Tim

How do I set up a report to where the page footer is supressed on Page 1
(REPORT HEADER) and starts on Page 2?

I know there is an option on the Report Properties, but I want the counter
to start with 1 on page 2. Is there a way to do this?
 
O

Ofer Cohen

You can write in the control source of the text box that show the page number

=[Page] - 1

On the OnFormat event of the page footer you can write the code

Me.[PageNumberTextBoxName].Visible = ([Page] <> 1)
 
Top