Excel How To Sum
Excel How To Sum
Generic formula
=SUMIF(range,"<>value",sum_range)
Explanation
To sum cells when other cells are not equal to a specific value, you can use the SUMIF
function.
In the example shown, cell H7 contains this formula:
=SUMIF(region,"<>West",amount)
This formula sums the amounts in column E only when the region in column C is not
"West".
=SUMIFS(amount, region,"<>West")
Notice that the sum range always comes first in the SUMIFS function.
SUMIFS allows you to easily extend the criteria to handle more than one condition if
needed.
Author
Dave Bruns
Related formulas
Related functions