sum multiple lookups?

G

Guest

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

how would I do this??

THANKS!!
 
G

Guest

=SUMPRODUCT(--(A1:A100="Corporate Marketing"),--(B1:B100="Critical"),C1:C100)

"Corporate Marketing" / "Critical" could be placed in cells and literals
replace by cell references.

Note SUMPRODUCT cannot reference whole columns.

HTH
 
G

Guest

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))

HTH
 
G

Guest

I'm still having a hard time with that....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"

Can you help?? Thanks! :)
 
S

shail

Else I can use

=sum(if(A2:A6="Corporate Marketing",if(B2:B6="Critical",C2:C6,"")))

Enter is as Array Function CTRL+SHIFT+ENTER

Thanks

Shail
 
D

Dave Peterson

Try toppers's(?) second response once more.

paula said:
I'm still having a hard time with that....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"

Can you help?? Thanks! :)
 
A

Aladin Akyurek

=SUM(SUMIF('Score Calc'!D4:D10,{"Corporate Marketing","Critical"},'Score
Calc'!CJ4:CJ10)

If the criteria set is in a range, say, E2:F2...

Either:

=SUMPRODUCT(SUMIF('Score Calc'!D4:D10,E2:F2,'Score Calc'!CJ4:CJ10)

Or:

=SUMPRODUCT(--ISNUMBER(MATCH('Score Calc'!D4:D10,E2:F2,0)),'Score
Calc'!CJ4:CJ10)
 
A

Aladin Akyurek

=SUM(SUMIF('Score Calc'!D4:D10,{"Corporate Marketing","Critical"},'Score
Calc'!CJ4:CJ10)

If the criteria set is in a range, say, E2:F2...

Either:

=SUMPRODUCT(SUMIF('Score Calc'!D4:D10,E2:F2,'Score Calc'!CJ4:CJ10)

Or:

=SUMPRODUCT(--ISNUMBER(MATCH('Score Calc'!D4:D10,E2:F2,0)),'Score
Calc'!CJ4:CJ10)
 

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

Top