In Excel: use =SUMIF(range, criteria, sum_range) — it adds up the numbers in sum_range only for the rows where range meets your single condition.
Syntax
Arguments
| Argument | Description | |
|---|---|---|
range | required | The cells tested against the criteria, such as a column of regions. |
criteria | required | The condition a cell must meet, like "West", ">100" or "App*" with wildcards. |
sum_range | optional | The cells actually added when the criteria match; if omitted, range itself is summed. |
Related functions
Grand total: 1,250.50
| Region | Sum |
|---|---|
| West | 125.50 |
| East | 1050 |
| South | 75 |
The same thing in your own sheet
Sum · Excel & Sheets
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
SUMIF adds numbers conditionally: it checks each cell in range against one criterion and, for every row that passes, adds the matching cell from sum_range. The criterion can be exact text, a number, a comparison like ">100", or a wildcard pattern. If you leave off sum_range, SUMIF adds the cells in range itself — handy when the column you test is also the column you total. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. Treat “use sumif function in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected formula shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.
A worked example
Regions are in A2:A100 and sales in B2:B100. To total only the West sales: =SUMIF(A2:A100, "West", B2:B100). It checks each region, and wherever it equals "West" it adds the matching sales figure, returning say 48200. To sum only sales above 1000 directly, test the number column itself: =SUMIF(B2:B100, ">1000"). SUMIF is the everyday tool for one-condition totals — sales by region, expenses by category, hours by project — without filtering or building a pivot table. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.
In Google Sheets
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “use sumif function in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.
Common mistakes
- Giving range and sum_range different heights, so rows misalign and the wrong cells are added.
- Forgetting the quotes around a comparison — ">100" must be a quoted text string, not >100.
- Reaching for
SUMIFwhen you have two or more conditions; that needsSUMIFS, which takes multiple criteria pairs.
Frequently asked questions
How do I use a comparison operator in SUMIF?
Put the operator and value together inside quotes as the criteria, for example ">100", "<=50" or "<>0". To compare against a cell, concatenate: ">"&E1.
Can SUMIF use wildcards?
Yes. Use * for any run of characters and ? for a single character, for example "App*" matches "Apple" and "Application". Wildcards work on text criteria, not on numbers.
What if I omit the third argument?
If you skip sum_range, SUMIF adds the cells in range itself. That is fine when the column you test is also the one you want to total, such as =SUMIF(B2:B100, ">1000").
Other ways people ask this
On the way here you may have searched this as “sumif function in excel”, “how to use the sumif function in excel”, “excel function sumif” and “excel sumif function examples” — it is all the same task, and this page is the single, complete answer to it.
Why do people search for this in so many different ways?
Because the same task has many names. “sumif function in excel”, “how to use the sumif function in excel”, “excel function sumif” all point at the one operation explained on this page, which is why they all lead here.