> This seems like it should be really simple....I'm still learning Access and
> can't quite get it. I've searched for the process, but those I've found all
[quoted text clipped - 17 lines]
>
> Would this just be some various of SUM() ?...other?
If all your criteria is listed in your post the query would look like
this:
SELECT Town, Count(*) As Total_Instances
FROM table_name
GROUP BY Town

Signature
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
Conan Kelly - 30 Jun 2006 21:07 GMT
In my experience with Access (2002), it doesn't like to count *'s
If MGFoster's query doesn't work for you, the try it like this:
SELECT Town, Count(Town) As Total_Instances
FROM table_name
GROUP BY Town
Hope this helps,
Conan Kelly
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
[quoted text clipped - 27 lines]
>>
>> Would this just be some various of SUM() ?...other?