Explanation
This example shows how the SUMIFS function can sometimes be used to “lookup” numeric values, as an alternative to more complicated multi-criteria lookup formulas. This approach is less flexible than more general lookup formulas based on INDEX and MATCH (or VLOOKUP) but it’s also more straightforward since SUMIFS is designed to easily handle multiple criteria. It’s also very fast.
In the example shown, we are using the SUMIFS function to “look up” the price of an item based on the item name, color, and size. The inputs for these criteria are the cells H5, H6, and H7.
Inside the SUMIFS function, the sum range is supplied as the “Price” column in Table1:
Table1[Price]
Criteria are supplied in 3 range/criteria pairs as follows:
Table1[Item],H5 // item
Table1[Size],H6 // size
Table1[Color],H7 // color
With this configuration, the SUMIFS function finds matching values in the “Price” column and returns the sum of matching prices for the specific criteria entered in H5:H7. Because only one price exists for each possible combination of criteria, the sum of the matching price is the same as the sum of all matching prices.
Notes:
- Each combination of criteria must match one result only.
- Lookup values (the sum range) must be numeric.
- SUMIFS will return zero if no match occurs.
Explanation
The SUMPRODUCT function multiplies arrays together and returns the sum of products. If only one array is supplied, SUMPRODUCT will simply sum the items in the array. For example, if we give SUMPRODUCT one array in the form of the data[Qty] column:
=SUMPRODUCT(data[Qty]) // returns 54
SUMPRODUCT returns 54, the total of all numbers in the Qty column, like this:
=SUMPRODUCT(data[Qty])
=SUMPRODUCT({9;6;4;8;5;1;7;5;4;2;3})
=54
What we need now is a way to “filter” these values to include only the value associated with “Red”, respecting case. In other words, we need to test the values in the Color column and only allow those associated with “Red” to make it through. We can do this with the EXACT function , which is designed to perform a case-sensitive comparison of text strings. We use EXACT like this:
--EXACT(F5,data[Color])
Because we are comparing the in value in F5 (“Red”) with the eleven values in the Color column, the EXACT function returns 11 results in an array like this:
{FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE}
Next, we use a double negative (–) in front of EXACT to convert the TRUE and FALSE values to 1s and 0s. The resulting array looks like this:
{0;0;0;0;1;0;0;0;0;0;0}
Notice the 1 in the 5th position corresponds to the “Red” in row 5. Every other value is now a zero. This will work perfectly as a filter. Turning back to the formula in G5, we can see how this works. The formula is evaluated like this:
=SUMPRODUCT(--EXACT(F5,data[Color]),data[Qty])
=SUMPRODUCT({0;0;0;0;1;0;0;0;0;0;0},{9;6;4;8;5;1;7;5;4;2;3})
=SUMPRODUCT({0;0;0;0;5;0;0;0;0;0;0})
=5
Each array is evaluated, the two arrays are multiplied together, and SUMPRODUCT returns the sum of the products. The FALSE values created with the EXACT function become zeros, and the zeros effectively cancel out the other values when the two arrays are multiplied together. The only values that survive are those associated with TRUE, and the final result is 5.
Remember, this formula only works for numeric values, because SUMPRODUCT doesn’t handle text.
Case-sensitive sum
Note that because we are using SUMPRODUCT, this formula comes with a unique twist: if there are multiple matches, SUMPRODUCT will return the sum of those matches. For example, the value in cell F6 is “RED”, which appears twice in the Color column. The formula in G6 returns 9 like this:
=SUMPRODUCT(--EXACT(F6,data[Color]),data[Qty])
=SUMPRODUCT({0;0;1;0;0;0;0;1;0;0;0}*{9;6;4;8;5;1;7;5;4;2;3})
=SUMPRODUCT({0;0;4;0;0;0;0;5;0;0;0}) // returns 9
The value “RED” appears in row 3 and row 8 of the table, and the final sum is 9.
Compact syntax
In more advanced SUMPRODUCT formulas, you will often see an abbreviated syntax like this:
=SUMPRODUCT(EXACT(F6,data[Color])*data[Qty])
Notice we are now providing just one array to SUMPRODUCT, which is a result of multiplying the two arrays together directly. The advantage of this approach is that we no longer need to use the double negative. The math operation of multiplying the arrays together automatically coerces the TRUE and FALSE values in the first array into 1s and 0s.