SUMIF

L

Luke M

I'm afraid I can't acces your file, but the common way to do a sum with
multiple conditions is to use sumproduct.

E.g.,
=SUMPRODUCT((A1:A100="January")*(B1:B100="Ford")*(C1:C100))

Would give sum of all Fords made in January.
Couple of notes: Sumproduct can not handle entire columns (unless you have
2007), and arrays must be equal size)
 
Top