Thank you Paul, how do I have it do this for just the figures that contain
Concrete or Rock, I actually have several other names in column A and need to
add the Wash and Blend for each name seperately from each other.
> Do you mean you want to sum column C if column B is "Wash" OR "Blend"?
> =SUMIF(B1:B100,"wash",C1:C100)+SUMIF(B1:B100,"blend",C1:C100)
[quoted text clipped - 23 lines]
> >
> > Thanks!
PCLIVE - 27 Mar 2008 23:02 GMT
That will use a different formula. There may be a different way of doing
it, but here's one way.
=SUMPRODUCT(--(A1:A100="Concrete"),--(B1:B100="Wash"),C1:C100)+SUMPRODUCT(--(A1:A100="Concrete"),--(B1:B100="Blend"),C1:C100)
If you have your criteria in a cells, (ex. X1="Concrete" Y1="Wash"
Z1="Blend"), then:
=SUMPRODUCT(--(A1:A100=X1),--(B1:B100=Y1),C1:C100)+SUMPRODUCT(--(A1:A100=X1),--(B1:B100=Z1),C1:C100)
Regards,
Paul
> Thank you Paul, how do I have it do this for just the figures that contain
> Concrete or Rock, I actually have several other names in column A and need
[quoted text clipped - 30 lines]
>> >
>> > Thanks!