count records of a particular value

robnsd

New member
Local time
Yesterday, 20:14
Joined
Oct 29, 2010
Messages
3
I want to see the number of records where a field equals a particular value in my report. I know of the count records function but it counts all records. How do I only count partucular records.
 
A quick and dirty method is to add a column to your query for the report.

Code:
Counter:iif([field1] = "ABC",1,0)

Then in your report add a sum field for this column.
 

Users who are viewing this thread

Back
Top Bottom