where the following named ranges are defined: If you’d rather avoid named ranges, use the ranges above entered as absolute references. The logical expressions in H6 and H7 can be combined, as explained below. This results in an array or TRUE FALSE values, which are coerced into ones and zeros with the double negative (–) operation. The result is this array: Notice the array contains 10 values, one for each row. A one indicates a row where the color is “red” and a zero indicates a row with any other color. Next, we have two more arrays: one for quantity and one for price. Together with this results from the first array, we have: Expanding the arrays, we have: SUMPRODUCT’s core behavior is to multiply, then sum arrays. Since we are working with three arrays, we can visualize the operation as shown in the table below, where the result column is the result of multiplying array1 * array2 * array3: Notice array1 works as a filter – zero values here “zero out” values in rows where the color is not “red”. Putting the results back into SUMPRODUCT, we have: Which returns a final result of 480.

Adding additional criteria

You can extend criteria by adding another logical expression. For example, to find total sales where the color is “Red” and the state is “TX”, H6 contains: Note: SUMPRODUCT is not case-sensitive.

Simplifying with a single array

Excel pros will often simplify the syntax inside SUMPRODUCT a bit by multiplying arrays directly inside array1 like this: This works because the math operation (multiplication) automatically coerces the TRUE and FALSE values from the first two expressions into ones and zeros.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.