Excel SUMIFS with Multiple Criteria: Complete Guide (Includes Real-World Examples)
Free formula generator
Open SUMIFS formula generatorThe SUMIFS function is the most powerful way to sum values based on multiple conditions in Excel and Google Sheets. Unlike SUMIF which handles only one condition, SUMIFS supports up to 127 criteria pairs.
SUMIFS syntax
=SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)
Key rule: the sum range comes first (opposite of SUMIF!). Each criteria is a pair: a range and the condition for that range.
Example 1: Single criteria (like SUMIF)
Sum all sales in column C where region in column A is "East":
=SUMIFS(C:C, A:A, "East")
Example 2: Two criteria (AND logic)
Sum sales where region = "East" AND product = "Widget":
=SUMIFS(C:C, A:A, "East", B:B, "Widget")
Example 3: Date range criteria
Sum amounts between two dates on the same column:
=SUMIFS(C:C, A:A, ">=1/1/2026", A:A, "<=3/31/2026")
Better practice: use cell references with >= operator:
=SUMIFS(C:C, A:A, ">="&E1, A:A, "<="&F1)
Put start date in E1 and end date in F1 for easy updates.
Example 4: Numeric criteria with operators
Sum amounts greater than 500 where status is "Pending":
=SUMIFS(C:C, B:B, "Pending", C:C, ">500")
Example 5: Blank and non-blank criteria
Sum amounts where status column is blank:
=SUMIFS(C:C, B:B, "")
Sum amounts where status column is NOT blank:
=SUMIFS(C:C, B:B, "<>")
Common mistakes to avoid
- Wrong argument order: sum_range first!
=SUMIFS(C:C, A:A, "X")not=SUMIFS(A:A, "X", C:C). - Mismatched range sizes: all ranges must have the same number of rows. C1:C100 and A1:A100 work; C1:C100 and A1:A50 do not.
- Text not in quotes:
"East"yes;Eastno. Use>0for numbers,">0"for text-style operators. - Dates as text: use DATE() or cell references to avoid date format issues.
Generate your SUMIFS formula instantly with our SUMIFS formula generator.
📋 Related Formula Tools
Want to generate the formula directly? Try our free formula generators:
📬 Get Weekly Excel Tips
Join thousands of Excel users who receive our weekly formula tips, tricks, and productivity hacks.
Subscribe Free →📖 Continue Reading
How to Get First Word from Cell in Excel (3 Formulas Compared)
Learn 3 Excel formulas to extract the first word from a cell — LEFT+FIND for all versions, TEXTBEFORE for Excel 365. Step-by-step with examples.
How to Calculate Percentage Increase in Excel — Formula & Examples | SheetMaster
Master the Excel percentage increase formula in under 2 minutes. Step-by-step with real examples for sales growth, revenue tracking & YoY comparisons. Copy the formula, done.
Excel Formula to Find Duplicates in Two Columns (Step-by-Step)
Find duplicate values across two columns in Excel using COUNTIF, VLOOKUP, and conditional formatting. Includes formulas to highlight and extract duplicates.
Calculate Business Days Between Two Dates in Excel (NETWORKDAYS)
Use the NETWORKDAYS and NETWORKDAYS.INTL functions to calculate the number of business days between two dates in Excel. Includes examples and holiday handling.