∑ Conditional Math

Goal: Sum the Sales only if they meet specific criteria.
SUMIF: 1 Condition. SUMIFS: 2+ Conditions.

Ready...

💻 Formula Structure

=SUMIF(range, criteria, [sum_range])
  • 1. Range: Where to look (e.g., Regions).
  • 2. Criteria: What to look for ("East").
  • 3. Sum Range: What to add (Sales).
-- Select a scenario...
...
Running Total:
$0

⚠️ Common Pitfalls

🚫 Argument Order Flip
In SUMIF, the numbers to add are LAST.
In SUMIFS, the numbers to add are FIRST.
This inconsistency confuses everyone!
🚫 Text Criteria
Criteria like "East" must be in quotes. Criteria like >100 must also be in quotes: ">100".