> I have report that I need to have the number of pages counted and then the
> number placed in a text box on a form. I am able to do this using the below
[quoted text clipped - 14 lines]
>
> End Sub
Make sure there is a control in the report that calculates [Pages].
Then, code the [FaxEmployment2] form (not in the report) to open the
report hidden, read the [Pages] and then close the report.
DoCmd.OpenReport "ReportName", acViewPreview, , , acHidden
Me.[txtComputerPrintouts] = reports!ReportName.[Pages]
DoCmd.Close acReport, "ReportName"

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail