Your manager asks, “What is the total sales for West region, but only for Closed orders?” A normal SUMIF handles one condition. SUMIFS handles multiple conditions and gives the answer cleanly.
What does SUMIFS do?
SUMIFS adds numbers only when multiple conditions are met. For example, it can add sales where Region is West and Status is Closed.
SUMIFS structure
Example: =SUMIFS(J:J,D:D,"West",K:K,"Closed")
This adds Sales from column J where Region in column D is West and Status in column K is Closed.
What does COUNTIFS do?
COUNTIFS counts records that meet multiple conditions. For example, it can count orders where Month is Aug and Status is Pending.
Example: =COUNTIFS(C:C,"Aug",K:K,"Pending")
Business examples
| Question | Formula | Use |
|---|---|---|
| Total West Closed sales | =SUMIFS(J:J,D:D,"West",K:K,"Closed") | Region + Status |
| Count Aug Pending orders | =COUNTIFS(C:C,"Aug",K:K,"Pending") | Month + Status |
| Total Aug Electronics sales | =SUMIFS(J:J,C:C,"Aug",G:G,"Electronics") | Month + Category |
Use cell criteria for reusable summaries
Instead of typing criteria inside formulas, use cells like A4 and B4. This lets you copy the formula down for different combinations.
=SUMIFS(J:J,D:D,"West",K:K,"Closed")=SUMIFS(J:J,D:D,A4,K:K,B4)Create multi-condition sales summaries
Download one ZIP file containing the practice workbook, challenge workbook, solution workbook, formula cheat sheet, quiz and answer key.
Mini assignment
- Create Region + Status summary using SUMIFS.
- Create Region + Status order count using COUNTIFS.
- Create Month + Category sales summary.
- Answer the business questions in the practice workbook.
- Use cell references instead of typing all criteria manually.
Quick quiz
- What does SUMIFS do?
- What does COUNTIFS do?
- When should you use SUMIFS instead of SUMIF?
- Why are cell criteria useful?
Answers: Adds values with multiple conditions; counts records with multiple conditions; when more than one condition is required; reusable summary formulas.