Table of Contents Page Count

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

Guest

KB 210269 works great if you send to a printer, but it requires manually
paging to the last page of the report to get the page count if you use print
preview.

Does anybody know an elegant way to page through a report to get the count
without having to use a third party vehicle like a PDF?

If an outside print vehicle is required, can Microsoft Office Document Image
Writer do this?


Thanks
 
Add a textbox to your report, preferably somewhere in a corner. In the
textbx's control source, put the following code:

= "Page " & [Page] & " of " & [Pages] & " Pages"

Copy and paste the above if it's confusing. Now each page will read "Page X
of Y Pages"

Sam
 
Back
Top