Steve said:
How can the number of records on each page of a report be counted?
Add a text box (named txtDtlCnt) to the detail section and
set its expression to =1 and RunningSum to Over All.
Then add code to the page footer section's Format event:
Static lngPrevCnt As Long
Me.[page footer text box] = Me.txtDtlCnt - lngPrevCnt
lngPrevCnt = Me.txtDtlCnt
If you are using the Pages property, then move the variable
declaration to the top of the module and add a line of code
to the report header section's Print event:
lngPrevCnt = 0