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! :)
> =SUMPRODUCT(--(A1:A100="Corporate Marketing"),--(B1:B100="Critical"),C1:C100)
>
[quoted text clipped - 23 lines]
> >
> > THANKS!!
Toppers - 17 Aug 2006 19:31 GMT
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
> I'm still having a hard time with that....here is the formula I'm using that
> is close:
[quoted text clipped - 34 lines]
> > >
> > > THANKS!!
Dave Peterson - 17 Aug 2006 19:48 GMT
Try toppers's(?) second response once more.
> I'm still having a hard time with that....here is the formula I'm using that
> is close:
[quoted text clipped - 34 lines]
> > >
> > > THANKS!!

Signature
Dave Peterson
Aladin Akyurek - 20 Aug 2006 10:59 GMT
=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)
> I'm still having a hard time with that....here is the formula I'm using that
> is close:
[quoted text clipped - 34 lines]
>>>
>>> THANKS!!