Counting..

John Bull

Registered User.
Local time
Today, 01:47
Joined
Sep 10, 2000
Messages
12
How can I produce a report that counts the number of times particular variables appear in a field.

The field is called "Types" and I have set it so that each record can take on 1 of the following three values:
"C/N & INV"
"IN & OUT"
"C/N"

regards
 
Select Types, Count(*) AS CountOfTypes
From YourTable
Group by Types;
 

Users who are viewing this thread

Back
Top Bottom