COUNTBLANK
Supported, behaves as documentedCategory: Statistical · Last tested 2026-07-04
Support matrix
| Engine | Documented | Live-tested | Verdict |
|---|---|---|---|
| Excel | Yes | Not yet | n/a |
| Google Sheets | Yes | Not yet | n/a |
| LibreOffice Calc | Yes | Yes (24.2.7.2, 2026-07-04) | Supported, behaves as documented |
Executed test cases
LibreOffice Calc 24.2.7.2 (tested 2026-07-04)
| Formula | Description | Result | Expected | Verdict |
|---|---|---|---|---|
| =COUNTBLANK(A1:A5) | Counts genuinely empty cells in a range | 2 | 2 A2 and A4 are the blank cells |
Matched |
| =COUNTBLANK(A1:A6) | Same mixed range as COUNT/COUNTA: only the genuinely empty cells count, not the text/number/boolean cells | 2 | 2 A3 and A6 are blank |
Matched |
| =COUNTBLANK(A1:A3) | Documented cross-engine-relevant edge case: a cell containing a formula that returns "" is counted as blank by COUNTBLANK, same as a truly empty cell - even though that identical cell would be counted as non-blank by COUNTA (see COUNTA_empty_string_formula_counts). Confirmed via Microsoft's COUNTBLANK docs (https://support.microsoft.com/en-us/office/countblank-function-6a92d772-675c-4bee-b346-24af6bd3ac22): "Cells with formulas that return "" (empty text) are also counted." | 2 | 2 A1 is truly blank (not set at all) and A2's formula result of "" is ALSO counted as blank -> 2 total; only A3=5 is excluded |
Matched |
| =COUNTBLANK(A1:A1) | A cell containing the number 0 is NOT counted as blank | 0 | 0 | Matched |
Docs & syntax
- Excel: official documentation
- Google Sheets: official documentation
- LibreOffice Calc: official documentation