where color is the named range D5:D15. The result is 7, since “red” appears 4 times and “blue” appears 3 times in the range D5:D16. See below for an explanation and for other ways to solve this problem. Note: we are using COUNTIF in this example since it does what we need, but the COUNTIFS function would work equally well. Also note that because we are counting text values “red” and “blue” are enclosed in double quotes. If we were counting numbers, the quotes would not be needed.

COUNTIF + COUNTIF

A simple, manual way to count with OR is to use the COUNTIF function more than once: In both cases, the range argument inside COUNTIF is color (D5:D15). However, criteria is “red” in the first COUNTIF and “blue” in the second. The first COUNTIF returns 4 and the second COUNTIF returns 3, so the final result is 7. This formula works fine, but it is somewhat redundant.

COUNTIF with array constant

Another way to configure COUNTIF is with an array constant that contains more than one value to use for criteria. This is the method used in the example shown above: Inside the SUM function, the COUNTIF function is given color (D5:D16) for range and {“red”,“blue”} for criteria: This causes the COUNTIF function to return two counts: one for “red” and one for “blue”. These counts are returned directly to the SUM function in a single array: And SUM returns 7 as the result. In other words, COUNTIF returns multiple counts to SUM, and SUM returns a final result. This is an example of nesting one formula inside another. For more complicated scenarios, see: COUNTIFS with multiple criteria and or logic

SUMPRODUCT function

Another way to solve this problem is with the SUMPRODUCT function like this: This is an example of using Boolean logic. Inside SUMPRODUCT there are two expressions joined by the addition (+) operator. Because color contains 11 values, each expression creates an array with 11 TRUE and FALSE values: In the first array, the TRUE values correspond to cells that contain “red”. In the second array, the TRUE values correspond to cells that contain “blue”. When the two arrays are added together, the math operation converts the TRUE and FALSE values to 1s and 0s: With just one array to process SUMPRODUCT sums the items in the array and returns 7 as a result. Another way to configure SUMPRODUCT is like this: In this formula, the expression: Returns a single array with 11 rows and 2 columns. The double negative coerces the TRUE and FALSE values to 1s and 0s: And SUMPRODUCT again returns 7 as a final result. For more complex scenarios see: SUMPRODUCT with multiple criteria and OR logic and Count cells equal to one of many things.

Double-counting risk

When counting with OR logic, be aware of the risk of double-counting. In this particular example, the values “red” and “blue” are values in the same field, so there is no danger in double-counting. However, if you are counting records where one field is “red” OR another field is “blue”, take care not to double-count, since both can be true at the same time in the same record.

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.