K
katagrga
I'm am still searching for an answer to this. I am needing to count the
number of customer's with the occurance. The formula below counts the number
of occuraces per customer. Any help would be much appreciated!
Thanks so much for your response! I am almost there, but I need a bit more
help. I only want to count a name one time. From the example below, I need
to get the answer of 4. (Dan Smith has several cks written on duplicate
dates, but I only want to count as 1 not 2.) Is that possible?
Why should I rate a post?
Manage Your Profile |Contact us
© 2009 Microsoft Corporation. All rights reserved. Contact Us |Terms of Use
|Trademarks |Privacy Statement
number of customer's with the occurance. The formula below counts the number
of occuraces per customer. Any help would be much appreciated!
Thanks so much for your response! I am almost there, but I need a bit more
help. I only want to count a name one time. From the example below, I need
to get the answer of 4. (Dan Smith has several cks written on duplicate
dates, but I only want to count as 1 not 2.) Is that possible?
Was this post helpful to you?Sheeloo said:One way to do this is to extract unique rows from your range to C1 [you need
to have headers in the first row]
(Data->Filter->Advance Filter... Copy To, Unique Values only)
Once you get the unique values in Col C&D enter this in Col E
=SUMPRODUCT(--($A$2:$A$17=C2),--($B$2:$B$17=D2))
change 17 to your last row of data.
Now you can count cells which are more than 1 in Col E to get what you want.
btw I got 5 from the sample data.
=COUNTIF(E2:E11,">1")
See http://wikisend.com/download/602840/Count Unique.xls for the file I used
to test the above.
katagrga said:Anyone out there have any ideas how I can get this information? I need a
count of the number of customers who wrote bad checks that wrote them on the
same date. So of the customers with bad checks how many had more than one
check written on the same date. Please help!
Why should I rate a post?
Manage Your Profile |Contact us
© 2009 Microsoft Corporation. All rights reserved. Contact Us |Terms of Use
|Trademarks |Privacy Statement