SUMIFS with multiple criteria

SUMIFS applies the region and date conditions to the same rows, then adds sales only where both pass. The live explanation identifies every contributing cell.

How Excel works this out

Inner to outer

The DATE function in Excel is used to create a date by specifying the year, month, and day. It is helpful when you need to work with dates in Excel and want to construct a date value from individual components.

Joins these values into a single piece of text.

Sum values that meet multiple conditions at once with SUMIFS, Excel's multi-criteria addition function.

Formula sample data

How this SUMIFS formula works

Rows must belong to West and have a date later than January 1, 2026. C5, C7, and C8 contribute 1,600, 1,400, and 2,000 for a total of 5,000.

The rows above are ordered from the innermost calculation to the final result. Excel has to finish an inner function before the function around it can use that value. Edit a cell in the grid to see that dependency chain update for real.

Try your own formula and data

The sample spreadsheet is fully editable. Change the formula or any cell it references. The intermediate values recalculate in your browser.

Practice with an exercise

Here is an exercise that uses SUMIFS. Type the formula into a real spreadsheet and we will check your answer as you go.

SUMIFS multiple criteria

Intermediate

Calculate total sales for a specific region AND specific product category.

Open exercise

Common mistakes with SUMIFS

If this formula is not doing what you expect, one of these is usually why.

Why is my SUMIFS with dates returning 0?

The dates may be text rather than real Excel dates, or the comparison operator may be missing. Build the cutoff with an expression such as ">"&DATE(2026,1,1).

Why does January 1 not count?

The criterion uses >, which means strictly later than January 1. Use >= when the cutoff date itself should be included.

Do SUMIFS ranges need the same size?

Yes. The sum range and every criteria range must cover corresponding rows with the same height.

How do I add an end date?

Add the date range again with a second criterion, such as B2:B8,"<="&DATE(2026,3,31).