Help - Brain Freeze on Query Count

GACat

New member
Local time
Today, 05:16
Joined
Apr 2, 2010
Messages
9
I did a search and could not find anything that I think is like what I am trying to do (if possible).

I am trying to have a query that will count all items in the "Name" field that are the same.

The goal is to get a count of everyone with the same name - for each name.

Is it possible?
Thanks
 
you need something like this:
SELECT COUNT([This Field]) as HowMany, [Some Grouping Field]
FROM MyTable
WHERE some criteria
GROUP BY [Some Grouping Field]

Or use the query designer and hit that totals (greek backwards E thingy) and do it visually.

Basically
 
Thanks - I think I am getting it.
 

Users who are viewing this thread

Back
Top Bottom