Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm trying to combine a series of conditions while ignoring duplicates to get a result. In the below data, I need to find Nicholson, Jack in column B and count all the "yes" values in columns C & D, but ignore count for duplicates in column A.
---- DATA ---- A B C D Week 1 Nicholson, Jack yes no Week 3 Nicholson, Jack yes yes Week 4 Nicholson, Jack yes yes Week 5 Nicholson, Jack yes yes Week 6 Nicholson, Jack yes yes Week 7 Nicholson, Jack yes yes Week 8 Nicholson, Jack yes yes Week 8 Nicholson, Jack yes yes Week 8 Washington, Denzel yes yes Seeking Result: 13 Thank you so much in advance! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Monday, November 20, 2017 at 2:12:59 PM UTC-5, Claus Busch wrote:
Hi, Am Mon, 20 Nov 2017 11:02:27 -0800 (PST) schrieb I'm trying to combine a series of conditions while ignoring duplicates to get a result. In the below data, I need to find Nicholson, Jack in column B and count all the "yes" values in columns C & D, but ignore count for duplicates in column A. ---- DATA ---- A B C D Week 1 Nicholson, Jack yes no Week 3 Nicholson, Jack yes yes Week 4 Nicholson, Jack yes yes Week 5 Nicholson, Jack yes yes Week 6 Nicholson, Jack yes yes Week 7 Nicholson, Jack yes yes Week 8 Nicholson, Jack yes yes Week 8 Nicholson, Jack yes yes Week 8 Washington, Denzel yes yes Seeking Result: 13 try: =SUMPRODUCT((MATCH(A1:A9,A1:A9,0)=ROW(1:9))*(B1:B9 ="Nicholson, Jack")*(C1:D9="yes")) Regards Claus B. -- Windows10 Office 2016 Claus, Thanks for getting back so quick. Unfortunately, you the formula you provided just results in 0. Best regards, Chris |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Monday, November 20, 2017 at 2:12:59 PM UTC-5, Claus Busch wrote:
Hi, Am Mon, 20 Nov 2017 11:02:27 -0800 (PST) schrieb I'm trying to combine a series of conditions while ignoring duplicates to get a result. In the below data, I need to find Nicholson, Jack in column B and count all the "yes" values in columns C & D, but ignore count for duplicates in column A. ---- DATA ---- A B C D Week 1 Nicholson, Jack yes no Week 3 Nicholson, Jack yes yes Week 4 Nicholson, Jack yes yes Week 5 Nicholson, Jack yes yes Week 6 Nicholson, Jack yes yes Week 7 Nicholson, Jack yes yes Week 8 Nicholson, Jack yes yes Week 8 Nicholson, Jack yes yes Week 8 Washington, Denzel yes yes Seeking Result: 13 try: =SUMPRODUCT((MATCH(A1:A9,A1:A9,0)=ROW(1:9))*(B1:B9 ="Nicholson, Jack")*(C1:D9="yes")) Regards Claus B. -- Windows10 Office 2016 I think I've diagnosed further. If my data has column headers and I move the data down, it will mess up the formula |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
a twist on counting unique values in a range which contains blankcells, using a formula. the formula can't use SUMPRODUCT or FREQUENCY | Excel Programming | |||
Unique Values, not Unique Records | Excel Discussion (Misc queries) | |||
SUMPRODUCT unique items | Excel Discussion (Misc queries) | |||
Why does this code remove Duplicate Values, by showing only 1, but it does NOT show Unique values for some reason ? | Excel Programming | |||
Unique sumproduct with criteria! | Excel Worksheet Functions |