sumif with multiple constraints

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

trying to sum a column ignoring two parameters, only successfully ignoring one.
currently using
=SUMIF(F:F,"<>-420") also want it to ignore values of -560 when returning sum.
any help appreciated.
 
Hi,

got the same problem, I want to sum all data under columns in the header row
saying 2 OR 4 OR 5 etc. I tried something like:
Sumif(lookuprange,OR(2,4,5,etc),sumrange), but it does not work.

I obviously could use:
Sumif(lookuprange,2,sumrange) + Sumif(lookuprange,4,sumrange) + etc

But this is quite inelegant, since I must sum over 7 criteria....

Any suggestions?!
 
Back
Top