if you really need it, alex, there is a way to do this with a microsoft access "view" i.e. query of query
however, you need to confirm that you really want select colA, count(distinct colB) rather than select colA, count(colB) because they are different
what you do is define a query like select distinct colA, colB and then save this, after which you can do select colA, count(colB) from savedquery
if this isn't clear, tell me your columns and i'll rework the queries
rudy