0% found this document useful (0 votes)
93 views

Excel How To Sum

This document provides an explanation and examples of using the SUMIF function in Excel to sum cells that are not equal to a specific value. The SUMIF function supports operators like "<>" to sum values when another cell is not equal to a given value. An example formula sums the amounts in column E when the region in column C is not equal to "West". Alternatively, the SUMIFS function can also be used to sum cells that are not blank by specifying the criteria as "<>" in the function.

Uploaded by

carlosnestor
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
93 views

Excel How To Sum

This document provides an explanation and examples of using the SUMIF function in Excel to sum cells that are not equal to a specific value. The SUMIF function supports operators like "<>" to sum values when another cell is not equal to a given value. An example formula sums the amounts in column E when the region in column C is not equal to "West". Alternatively, the SUMIFS function can also be used to sum cells that are not blank by specifying the criteria as "<>" in the function.

Uploaded by

carlosnestor
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Sum if cells are not equal to

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".

How the formula works


The SUMIF function supports all of the standard Excel operators, including not-equal-to,
which is input as <>.
When you use an operator in the criteria for a function like SUMIF, you need to enclose it
in double quotes (""). In this case, the criteria is input as "<>West" which you can read as
"not equal to West", or simply "not West".

Alternative with SUMIFS


You can also use the SUMIFS function to sum if cells are NOT blank. SUMIFS can handle
multiple criteria, and the order of the arguments is different from SUMIF. The equivalent
SUMIFS formula is:

=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

Sum if not blank


To sum cells when certain values are not blank, you can use the SUMIF function. In the
example shown, cell G6 contains this formula: = SUMIF ( C5:C11 , "<>" , D5:D11 ) This
formula sums the amounts in column D only when the value in...

Sum if cells are equal to


If you need to sum numbers based on other cells being equal to a certain value, you can
easily do with either the SUMIF or SUMIFS function. In the example shown, we are
summing all sales in the West region. The formula in cell H6 is: = SUMIF (...
Sum if equal to either x or y
If you need to sum numbers based on other cells being equal to either one value or another
(either x or y), you can use the SUMIF function. In the example show, we are summing all
sales from either the West OR North region. The formula in cell H6 is...

Related functions

Excel SUMIF Function


SUMIF is a function to sum cells that meet a single criteria. SUMIF can be used to sum
cells based on dates, numbers, and text that match specific criteria. SUMIF supports logical
operators (>,,=) and wildcards (*,?) for partial matching....

Excel SUMIFS Function


SUMIFS is a function to sum cells that meet multiple criteria. SUMIFS can be used to sum
values when adjacent cells meet criteria based on dates, numbers, and text. SUMIFS
supports logical operators (>,...

You might also like