Is there an easier way to do this, SUMIF() question

A

Adam Kroger

=SUMIF(C12:C24,"W",Y12:Y24)+SUMIF(C12:C24,"A",Y12:Y24)+SUMIF(C12:C24,"M",Y12:Y24)
 
B

Bob Phillips

=SUMPRODUCT((ISNUMBER(FIND({"W","A","M"},C12:C24))*(Y12:Y24)))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
D

David Billigmeier

You don't even need sumproduct, a simple sum will do the same:

=SUM(SUMIF(C12:C24,{"W","A","M"},Y12:Y24))
 
Top