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 for your help.


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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top