Help on Record Count

  • Thread starter Thread starter Juan Tamad
  • Start date Start date
This query will do it, adjust the table and field names.

SELECT Count(Table1.A) AS CountOfA
FROM Table1
HAVING (((Table1.A)=True));

You may also want to look up the DCount function in the help file.
 
Back
Top