One solution is to supply multiple criteria in an array constant like this: This will cause SUMIFS to return two results: a count for “complete” and a count for “pending”, in an array result like this: To get a final total, we wrap SUMIFS inside SUM. The SUM function sums all items in the array and returns the result.

With wildcards

You can use wildcards in the criteria if needed. For example, to sum items that contain “red” or “blue” anywhere in the the criteria_range, you can use:

Adding another OR criteria

You can add one additional criteria to this formula, but you’ll need to use a single column array for one criteria and a single row array for the other. So, for example, to sum orders that are “Complete” or “Pending”, for either “Andy Garcia” or “Bob Jones”, you can use: Note the semi-colons in the second array constant, which represents a vertical array. This works because Excel “pairs” elements in the two array constants, and returns a two dimensional array of results. With more criteria, you will want to move to a formula based on SUMPRODUCT.

Cell references for criteria

You can’t use cell references inside an array constant. To use a cell reference for criteria, you can use an array formula like this: Where range1 is the sum range, range2 is the criteria range, and range3 contains criteria on the worksheet. With two OR criteria, you’ll need to use horizontal and vertical arrays. Note: this is an array formula and must be entered with control + shift + enter.

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.