What is SUMIFS in Google Sheets?

SUMIFS adds values in sum_range only when every criteria_range passes its paired test. Argument order is sum_range first, then alternating criteria_range and criterion pairs. All conditions use AND logic: every test must be TRUE on the same row.

When to use it

Use SUMIFS for filtered totals: West region and Q1 month, or product line and active status, without helper columns.

When to skip it

Skip SUMIFS for a single simple rule. SUMIF is shorter. For OR logic across one column, add multiple SUMIFs or use QUERY.

How it works

  1. 1

    Start with sum_range, the numeric column to total.

  2. 2

    Add criteria_range1 and criterion1, then more pairs for each extra rule.

  3. 3

    Every criteria_range must match the same row count as sum_range.

  4. 4

    Each criterion can be text, number, comparison, cell reference, or wildcard string.

  5. 5

    SUMIFS skips rows where any single test fails.

  6. 6

    Lock ranges with $ when building a summary table you copy across headers.

Examples in Google Sheets

Region and quarter revenue

=SUMIFS(C2:C, A2:A, "West", B2:B, "Q1") totals column C where region is West and quarter is Q1.

Active deals above size

=SUMIFS(Amount!D:D, Status!E:E, "Open", Amount!D:D, ">5000") sums open deals over 5000.

Rep and product line

=SUMIFS(Revenue, Owner, H1, SKU, I1) uses dropdown cells for rep and SKU filters on a dashboard.

Build this without starting from a blank cell

Use a Better Sheets tool for SUMIFS, then watch a walkthrough when you want the full pattern.

Better Sheets resources

Common mistakes

  • Reversing SUMIF argument order. SUMIFS always leads with sum_range.
  • Criteria ranges shorter than sum_range, causing partial matches or errors.
  • Expecting OR between columns from one SUMIFS call. Every pair is AND.
  • Using different row offsets on each criteria_range so tests no longer align.
  • Hard-coding month names in twelve formulas instead of a single criterion cell reference.

Frequently asked questions

SUMIFS vs SUMIF?
SUMIF handles one condition. SUMIFS stacks multiple range-criterion pairs with AND logic.
How many criteria can SUMIFS use?
Google Sheets allows many pairs. Practical limits are readability and range alignment.
SUMIFS with OR logic?
Not in one call. Add separate SUMIFS results or use QUERY with OR in the where clause.
SUMIFS vs FILTER plus SUM?
Both work. SUMIFS is compact for AND rules. FILTER plus SUM is flexible for complex arrays.
SUMIFS with dates?
Use DATE literals or date cells in criteria. Keep date columns true date values.
SUMIFS blank criterion?
Test blanks with "" on the matching criteria_range for that column.
Why SUMIFS returns zero?
One criterion fails on every row, often from spaces, wrong case, or misaligned ranges.
SUMIFS across sheets?
Each range can include a tab name. All ranges must still align by row.

Related Tutorials

Watch how SUMIFS works

Browse more tutorials
Hardest Formula: SumIF | Addition Based on Dates / Values

Hardest Formula: SumIF | Addition Based on Dates / Values

Demystifying the SumIF Formula. Add up your values based on a condition,...
How to Use AND(), OR() in IF() in Google Sheets For Multiple Criteria

How to Use AND(), OR() in IF() in Google Sheets For Multiple Criteria

One of the most simplest and useful formula combinations is using and an...
How to Use AND() and OR() in IF() in Google Sheets For Multiple Criteria

How to Use AND() and OR() in IF() in Google Sheets For Multiple Criteria

One of the most simplest and useful formula combinations is using and an...
Learn Google Sheet Formulas The Hard Way

Learn Google Sheet Formulas The Hard Way

One weird way to learn more about what Google Sheets can do. https://bet...
3 More Ways to Count in Google Sheets

3 More Ways to Count in Google Sheets

Learn how to use CountBlank() and more counting formulas.
Search Every Function in Google Sheets

Search Every Function in Google Sheets

Built a useful tool to filter Google Sheet formulas based on keywords.

Related blog posts

Guides that explain SUMIFS in more depth.

Browse the blog

Related glossary terms

Done reading about SUMIFS?

Membership unlocks 636+ tutorials, unlimited generators, and every template. Practical lessons. Zero fluff.

Need this once

Jump to a free tool or a single tutorial for this topic.

Learning Sheets for real

Unlock the full library, generators, and templates with membership.