Count names in column once

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Want to count the names in a column only once. The name may be repeated
several times such as Tom
Tom
Tom but I want to count it only once at
the bottom of the row. Is this possible in Excel?
 
Change the range to reflect your names. It is an array formula, so commit it
with Shift-Ctrl-Enter

=SUM(1/COUNTIF(A1:A10,A1:A10))
 
Yes,
Try something like
=IF(COUNTIF(A1:A1000, "Tom")>0, "The name 'Tom' exists in the list","")
Of course change the meesage displayed whether true or false to what you
want displayed,
Regards,
Alan.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top