Sum sales for one rep
=SUMIF(A2:A500, "Jordan", C2:C500) adds revenue in column C where owner in column A is Jordan.
SUMIF totals values in a sum_range when a matching row in criteria_range meets your criterion. It is the classic single-condition sum: add column B where column A equals West. Wildcards and comparison operators work in the criterion string.
Use SUMIF when you need one rule: revenue by region, hours by project code, or expenses where category equals Travel.
Skip SUMIF when you need two or more AND conditions on different columns. Use SUMIFS instead. For counting matches without summing, use COUNTIF.
Pick sum_range: the numeric column to add, such as Revenue in column C.
Pick criteria_range: the column to test, often the same height as sum_range.
Write criterion as a quoted string, cell reference, or expression like ">100".
SUMIF scans criteria_range row by row and adds the parallel sum_range cell when the test passes.
Use wildcards * and ? inside quotes for partial text matches on labels.
Pair with absolute references ($C$2:$C) when copying the formula across summary columns.
=SUMIF(A2:A500, "Jordan", C2:C500) adds revenue in column C where owner in column A is Jordan.
=SUMIF(D2:D, ">=1000", E2:E) totals amounts in E where score in D is at least 1000.
=SUMIF(B2:B, "Marketing*", C2:C) includes Marketing, Marketing Ops, and similar labels.
Build this without starting from a blank cell
Use a Better Sheets tool for SUMIF, then watch a walkthrough when you want the full pattern.
Watch how SUMIF works
Guides that explain SUMIF in more depth.
The IF() formula is a logical function that makes it easy for users to compare a certain value and an expected value. It takes a look at a value to see if basic conditions are met.
Read post →It is so stupidly simple as well that you might not do it and you might not think you'll get enough out of it. But I can tell you unequivocally: This is very much how I learned a lot of Google Sheet formulas.
Read post →Dive into Google Sheets with our free beginner tutorials on the powerful =IF() formula. Practical applications, templates, and tools included!
Read post →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.
Read guide →COUNTIF returns how many cells in a range meet a single criterion. It powers KPI tiles like open ticket count, rows flagged Yes, or cells above a quota. The criterion follows the same string, comparison, and wildcard rules as SUMIF.
Read guide →FILTER returns only the rows from a range that meet one or more conditions. Conditions are boolean arrays the same height as the data. FILTER spills results automatically, so it replaced many INDEX/SMALL helper-column patterns for live subsets.
Read guide →Every formula starts with = followed by a function name and arguments in parentheses. Ranges use A1 notation, text sits in quotes, and operators like + and & combine values. Sheets recalculates when inputs change, so syntax errors show as #NAME? or #ERROR! in the cell.
Read guide →Done reading about SUMIF?
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.