SUMIF Greater Than

If you just need to sumif greater than and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

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

=SUMIF(range, criteria, [sum_range])

Arguments

ArgumentDescription
rangerequiredThe cells tested against the criteria, such as a column of regions.
criteriarequiredThe condition a cell must meet, like "West", ">100" or "App*" with wildcards.
sum_rangeoptionalThe cells actually added when the criteria match; if omitted, range itself is summed.

Related functions

SUMIFSCOUNTIFIF
ƒxQuick Pivot SummarizerLive
Groups
3

Grand total: 1,250.50

RegionSum
West125.50
East1050
South75

The same thing in your own sheet

Sum · Excel & Sheets

Put your group keys in a column (here starting at E2) and fill the formula down.
Real pivot table: Excel — select your data, Insert → PivotTable, drag the group column to Rows and the value column to Values. Google Sheets — select the data, Insert → Pivot table. · Runs entirely in your browser — your data never leaves this page.
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

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. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “sumif greater than”. Start on a copy or a tiny sample, keep the affected cells visible, and compare the result with the tool above before you touch the real workbook. 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. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

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. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. 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 “sumif greater than”: 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 SUMIF when you have two or more conditions; that needs SUMIFS, 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").