When i use the code you gave me it just gives me a total number of all
the people that appear. (i.e. the names that are in the table are
"test1" "test1" and "test". When i run that query it gives me under
the appear colomn the number 3. What i need is under the appear colomn
next to test1 it says 2 and under test2 it says one.)
How do i do that?
Van T. Dinh said:
SELECT PersonName, Count([PersonName]) As PersonAppearances
FROM [YourTable]
GROUP BY PersonName
--
HTH
Van T. Dinh
MVP (Access)
Clay Forbes said:
I need the code for a query that tells how many times each person has appeared.
Example- Jim has appeared 7 times in this table.
How would i do that?