COUNTBLANK Function
COUNTBLANK returns the count of completely blank cells in a range.
Syntax
Parameters
| Parameter | Description | Required |
|---|---|---|
| range | The range of cells to check for blank cells. | Required |
Basic Example
Count blank cells in a data range
=COUNTBLANK(A1:A10)Counts how many cells in A1:A10 are completely empty.
Advanced Examples
Example 1: Calculate completion rate
Progress trackingDetermine what percentage of cells have been filled in
=1 - COUNTBLANK(A1:A100)/COUNTA(A1:A100)How COUNTBLANK Works
COUNTBLANK scans each cell in the range and counts it only if it is completely empty. Cells containing formulas (even those returning empty strings) are not counted as blank.
Important Notes & Limitations
Cells with formulas that return "" are not counted as blank.
Cells with only spaces are not counted as blank.
Common Errors & Fixes
0No blank cells foundFix: Verify your data range.
Download Practice File
COUNTBLANK
countblankPractice COUNTBLANK with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the COUNTBLANK function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps