Find Blank Cells in a Column
A column that should be fully filled in — emails, phone numbers, due dates — has gaps, and you need to find every row where the entry is missing.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
The formula tests whether A2 equals an empty string. Truly empty cells pass the test, and so do cells containing a formula that returns "" — which is exactly what you usually want, because both look blank on screen. Copy it down, then filter or sort the helper column to isolate every gap. This is more forgiving than ISBLANK: ISBLANK(A2) returns TRUE only for a genuinely empty cell, so a cell holding =IFERROR(VLOOKUP(...),"") counts as filled to ISBLANK even though it displays nothing. Use ISBLANK only when you specifically need to distinguish truly empty cells from formula-produced blanks.
When to use it
Use this before importing data anywhere, sending a mail merge, or building a report — any time a gap in the column means a failed email, a skipped payment, or an incomplete record.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08