Here is an example of my data:
Org criticality
score
Corporate Marketing critical 100
Human Resources critical 100
Corporate Security non-critical 75
Finance non-critical 100
Corporate Marketing critical 50
I need to search column A for a specific org & B for "critical" and sum
their values column C.
Example lookup corporate marketing & critical would add 100+50 = 150
here is the formula I'm using that
is close:
=SUMPRODUCT(SUMIF('Score Calc'!D4:D10,{"Corporate Marketing"},'Score
Calc'!CJ4:CJ10))
I just need to know how to add another part to the array to also look up
"Critical"
shail - 17 Aug 2006 19:47 GMT
=sum(if(A2:A6="Corporate Marketing",if(B2:B6="Critical",C2:C6,"")))
Enter is as Array Function CTRL+SHIFT+ENTER
Thanks
Shail
> Here is an example of my data:
>
[quoted text clipped - 19 lines]
> I just need to know how to add another part to the array to also look up
> "Critical"
Dave Peterson - 17 Aug 2006 19:49 GMT
Try toppers' suggestion once more.
> Here is an example of my data:
>
[quoted text clipped - 19 lines]
> I just need to know how to add another part to the array to also look up
> "Critical"

Signature
Dave Peterson
Toppers - 17 Aug 2006 20:35 GMT
As posted in reply to your previous posting: it's your choice as whether you
use this but it's much easier than using SUMIF.
Use the following rather then SUMIF and change E4:E10 to required range
=SUMPRODUCT(--('Score Calc'!D4:D10="Corporate Marketing"),--('Score
Calc'!E4:E10="Critical"),('Score Calc'!CJ4:CJ10))
> Here is an example of my data:
>
[quoted text clipped - 19 lines]
> I just need to know how to add another part to the array to also look up
> "Critical"