Count the number of records that show up in a Access form

I need to count the number of records that show up in a Microsoft access form. The forms record source is defined dynamically in vb using a select query. I need to know how to count the number of records that show up in a form.


Answer this question

Count the number of records that show up in a Access form

  • Memroid

    Open the results of your select query as a recordset. Then move to the last record in the recordset, and get the RecordSet.RecordCount property. Does this work



  • DerekL

    How do I do that

  • Count the number of records that show up in a Access form