What is the difference between SUMIF and SUMIFS?
SUMIFS handles multiple conditions, but the practical difference is argument order: SUMIF is (range, criteria, sum_range) while SUMIFS is (sum_range, criteria_range, criteria). Since SUMIFS handles one condition perfectly well, using it everywhere means only one order to remember.
Why does my SUMIF return 0?
Most often the sum range and criteria range are swapped, the criteria string is malformed (a cell reference not joined with &), or the numbers are stored as text after an import. Check cell alignment first — text aligns left, numbers right.
How do I write a criterion like 'greater than the value in F1'?
Join the operator to the reference: ">"&F1. Writing ">F1" compares against the literal two-character text F1, which no number is greater than, so you get 0.
Do wildcards work in COUNTIF?
Yes, in text criteria: * matches any run of characters and ? matches exactly one. "North*" therefore also counts Northeast and Northwest — a frequent cause of counts that come out too high. Escape a literal asterisk as ~*.
How do I use COUNTIFS between two dates?
Write two conditions on the same column — a lower bound and an upper bound: =COUNTIFS(A2:A100,">="&F1,A2:A100,"<="&F2). There is no 'between' operator, and listing the same column twice is correct because the conditions are ANDed. Putting the boundary dates in cells and referencing them also avoids regional-settings ambiguity in how a quoted date literal is parsed.
Can COUNTIFS do OR instead of AND?
No. Every criteria pair narrows the result, so COUNTIFS(B:B,"North",B:B,"South") returns 0 — no cell is both. For OR, add separate COUNTIFs: =COUNTIF(B:B,"North")+COUNTIF(B:B,"South"). This is the mirror image of the AND case, where adding conditional sums double-counts and a single SUMIFS is correct.
Why does COUNTIFS return #VALUE!?
Almost always because the criteria ranges are different sizes — for example B2:B100 against C2:C99. Every criteria range must have the same number of rows and columns as the first, because the function compares them row by row in lockstep. This is the one error in this family that surfaces loudly instead of returning a plausible wrong number.
Can SUMIF add up cells based on their colour?
No. Conditional functions read values, not formatting. Colour-based totals need a helper column that records the meaning behind the colour, which is the better design anyway because the meaning becomes data rather than decoration.