yes, in a Totals query. open a new query in design view. add the table that
holds the field you want to total (in an Access table, the correct name for
a "column" is "field"). in the query design grid, add the field twice. on
the toolbar, click the Totals button (a funny-looking capital E, or a
capital M lying on its' side). the default setting for each field is "Group
By". in the second field, change the Group By setting to Count.
the SQL statement looks like
SELECT MyTable.MyField, Count(MyTable.MyField) AS CountOfMyField
FROM MyTable
GROUP BY MyTable.MyField;
hth