Starting page numbering other than 1

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

Guest

I have some report that require the page numbering start at number higher
than one. Example starting at Page 12.
 
I have some report that require the page numbering start at number higher
than one. Example starting at Page 12.

Code the Report Header Format event:
Me.[Page] = Me.[Page] + 11
 
Or, write in the control source of the text box where you want the page number

=[Page] + 11

--
\\// Live Long and Prosper \\//
BS"D


fredg said:
I have some report that require the page numbering start at number higher
than one. Example starting at Page 12.

Code the Report Header Format event:
Me.[Page] = Me.[Page] + 11
 
Thank You Very much

Ofer said:
Or, write in the control source of the text box where you want the page number

=[Page] + 11

--
\\// Live Long and Prosper \\//
BS"D


fredg said:
I have some report that require the page numbering start at number higher
than one. Example starting at Page 12.

Code the Report Header Format event:
Me.[Page] = Me.[Page] + 11
 
Back
Top