On 2002-08-01 10:28, iszlq wrote:
I'm sure this has been answered before - is there a simpl formula that will allow me to count only unique cells that match criteria? For example - list includes multiple entries for the same person - want to count the person only once.
On 2002-08-01 13:09, iszlq wrote:
Specifically, I am trying to count instances. For example, I have a list of names that includes the same name more than once -
Jane Doe
Joe James
Jane Doe
Tom SoAndSo
I want to count how many people are in this list - but I don't want to count Jane Doe twice.
Do I need to use an array function to do this or is there a simple formula?
or, array-enter:
=SUM(IF(LEN(A1:A10),1/COUNTIF(A1:A10,A1:A10)))
On 2002-08-02 06:17, iszlq wrote:
or, array-enter:
=SUM(IF(LEN(A1:A10),1/COUNTIF(A1:A10,A1:A10)))
That worked beautifully, thank you.
What is this formula actually doing though? When I break it down, it makes no sense to me. Len(range) is the test? How does that work? Also, what is countif doing with the range and criteria the same?
How does one ever come upon a formula like this??