Starting Page counter on 2nd Page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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)
 
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?

Code the Report Header Format event
Me.[Page] = 0

Set the Report's PageFooter property to Not with Rpt Hdr
 
Back
Top