nancye said:
I have a report with 127,681 pages, my text field that shows # of pages
shows 1 of -3391 How do I get the 127,681 to show?
According to Help - Specifications, reports can have up to
64K pages so I am surprised you can actually get that much
paper out a report or, for that matter, a printer.
That number being suspiciously like twice the max value in a
16 bit unsigned short integer, I suggest that if there is
any hope of getting the full number, try setting the text
box to the expression:
=IIf(Pages < 0, Pages + 2 ^ 17, Pages)