Comparison guide

COUNT vs COUNTIF vs COUNTIFS
which one to use

Three counting functions that confuse almost every beginner. Here's exactly when to use each one.

EP
ExcelPro·Sep 11, 2026

The one-line summary

COUNT — how many cells have numbers. COUNTIF — how many cells match one condition. COUNTIFS — how many cells match multiple conditions.

COUNT in practice

=COUNT(B2:B100) -- Counts cells that contain numbers -- Ignores text, blanks, TRUE/FALSE, errors -- Useful: "how many entries have a value?" or "how many rows have been filled in?"

COUNTIF in practice

=COUNTIF(B2:B100, "North") text match =COUNTIF(C2:C100, ">1000") numeric condition =COUNTIF(A2:A100, "<>") non-blank cells =COUNTIF(A2:A100, "app*") wildcard: starts with "app"

COUNTIFS in practice

=COUNTIFS(B2:B100, "North", C2:C100, "Active") -- Count rows where B = North AND C = Active =COUNTIFS(B2:B100, "North", D2:D100, ">="&DATE(2026,1,1)) -- North AND date on or after 1 Jan 2026
Use caseFunction
Count cells with numbersCOUNT
Count non-blank cellsCOUNTA
Count matching one text or number conditionCOUNTIF
Count matching two or more conditionsCOUNTIFS
Count matching condition OR another conditionCOUNTIF(...) + COUNTIF(...)
✅ Recommendation

Use COUNTIFS by default — it handles one or multiple conditions and replaces COUNTIF entirely. Only use COUNT when you specifically need to know whether cells contain numbers (not just any value).

Practice what you just learned

ExcelPro has 880+ hands-on exercises across 9 tracks — type real formulas, get instant feedback.

Start practising free →
Keep reading