RecordCount

B

Bill

In VBA for forms, I obtain the current record
count with Me.RecordsetClone.RecordCount.
What is the method for reports?
Thanks,
Bill
 
M

Marshall Barton

Bill said:
In VBA for forms, I obtain the current record
count with Me.RecordsetClone.RecordCount.
What is the method for reports?


Use a text box in the report header seection and set its
expression to =Count(*)
 
Top