COUNTIF vs COUNTIFS: One Condition or Many
You're counting rows in an order log — how many from the East region, then how many from East over $1,000 — and it's unclear whether you need COUNTIF, COUNTIFS, or both.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
COUNTIF takes exactly one range and one condition: =COUNTIF(A2:A50,"East") counts East orders and that's all it can do. COUNTIFS takes range/condition pairs — as many as you need — and only counts rows where every pair matches, so the formula above counts orders that are East AND over $1,000. With a single pair, COUNTIFS gives exactly the same answer as COUNTIF, which is why a common piece of advice is to just always use COUNTIFS: you never rewrite the formula when a second condition shows up. Both functions accept the same condition syntax — text, ">1000", "<>", and wildcards like "A*".
When to use it
Use COUNTIFS for any conditional count in an order log, pipeline, or invoice list — one condition or five. COUNTIF only earns its place inside legacy formulas you're maintaining.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08