RecordCount

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

In VBA for forms, I obtain the current record
count with Me.RecordsetClone.RecordCount.
What is the method for reports?
Thanks,
Bill
 
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(*)
 
Back
Top