Starting page numbering other than 1

I

iholder

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

fredg

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
 
O

Ofer

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
 
I

iholder

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
 
Top