How to Use the SUMIFS Function in Excel

The SUMIFS function in Excel allows you to add numbers that meet multiple conditions. It is one of the most useful functions for analyzing business data because it can total sales, expenses, hours, inventory, or any other numeric values based on multiple criteria simultaneously.

If you work with reports, dashboards, budgets, or transaction data, SUMIFS is a must-know Excel function.

In this guide, you’ll learn

  • What the SUMIFS function does
  • The syntax and arguments of SUMIFS
  • How to sum values using multiple conditions
  • How to use text, numbers, and date criteria
  • How to use operators like greater than and less than
  • Common SUMIFS mistakes and how to fix them
  • Real-world examples of SUMIFS in Excel

What Is the SUMIFS Function?

The SUMIFS function adds values in a range only when multiple conditions are met.

SUMIFS Function Syntax

Argument Definitions:

  • sum_range — The cells you want to add together
  • criteria_range — The first range to evaluate
  • criteria1 — The condition to apply
  • criteria_range2 — Optional additional range
  • criteria2 — Optional additional condition

Example Dataset Used in This Tutorial

You can download the sample data we’ll be using in this tutorial by clicking on this link—> SUMIFS Function Data

Basic SUMIFS Example

Imagine you have a sales table like this

You want to total sales where:

  • Sales Rep = Sarah
  • Region = West

Use:

Excel returns 1400

Because only one row matches both conditions.

How SUMIFS Works

SUMIFS checks every row against all conditions.

A value is only included in the total if every condition is true.

In the example:

Excel asks:

  • Is the Sales Rep Sarah?
  • Is the Region West?

If both answers are YES, Excel adds the sales amount.

Using SUMIFS with Number Conditions

SUMIFS can also evaluate numeric conditions.

For example, sum all sales greater than 1000:

This adds only values above 1000.

You can also combine conditions.

Example:

This totals sales in the East region above 1000.

Using SUMIFS with Dates

SUMIFS is extremely useful for date-based reporting.

For example, total sales between January 5 and January 10:

This formula adds sales between January 5 and January 10.

Common Date Operators

OperatorMeaning
>=Greater than or equal to
<=Less than or equal to
>Greater than
<Less than

Using Cell References in SUMIFS

Instead of typing conditions directly into formulas, you can reference cells.

Example:

Where:

  • E1 contains a region
  • E2 contains a sales rep

This makes formulas dynamic and easier to update.

If the values in F1 or F2 change, the SUMIFS result updates automatically.

SUMIFS vs SUMIF

FunctionPurpose
SUMIFSums using one condition
SUMIFSSums using multiple conditions

SUMIF Example

SUMIFS Example

If you need more than one condition, use SUMIFS.

Important SUMIFS Rules

All ranges must be the same size

This works:

This causes errors:

The ranges must contain the same number of rows and columns.

SUMIFS Is AND Logic

SUMIFS uses AND logic by default.

That means every condition must be true.

For example:

Excel only sums rows where:

  • Region is East
  • AND Sales Rep is Sarah

Common SUMIFS Errors

Forgetting quotation marks

Incorrect:

Correct:

Using mismatched ranges

All criteria ranges and the sum range must match in size.

Incorrect operator formatting

Incorrect:

Correct:

Operators must be inside quotation marks.

Real-World Uses for SUMIFS

SUMIFS is commonly used for:

  • Sales reporting
  • Budget analysis
  • Expense tracking
  • Payroll calculations
  • Inventory management
  • KPI dashboards
  • Financial reporting
  • Project tracking

It is one of the most important reporting functions in Excel.

Example Dataset Used in This Tutorial

You can download the sample data we’ll be using in this tutorial by clicking on this link—> SUMIFS Function Data

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *