Home
Challenges
Count Blank Records
Cleanup
Easy

Count Blank Records

An Excel contact sheet has missing details, and you need to count blank records and flag which rows still need follow-up.

AuthorExcelClash Team
PublishedApr 02, 2026
Count Blank Records

The Problem

A contact list is only useful when the key fields are filled in. Missing phone numbers and email addresses turn a normal sheet into a follow-up project because the team cannot rely on it when they need to call or message someone quickly.

The hard part is not spotting one empty cell. The hard part is measuring the gaps across the whole list and seeing exactly which rows still need work. This challenge covers both.

How We Solve It

We handle the task from two angles.

  • First, we count how many blanks exist in the phone and email columns.
  • Second, we flag each row based on whether the email field is empty.

That gives us a clean summary at the top and an action list inside the table.

Method 1: COUNTBLANK for the totals

CountBlank Illustration
Method 1: Count empty cells in one column with COUNTBLANK.

COUNTBLANK is the fastest way to answer a simple question like, "How many phone numbers are missing?" You point it at a range and it returns the number of empty cells. That is exactly what we need for the summary section in this challenge.

This solves the summary part of the problem because it turns a messy visual scan into one clear count. Instead of checking each row by eye, the worksheet can return the total number of missing phone or email entries right away.

=COUNTBLANK(B2:B6)

Method 2: Compare counts with COUNTA

CountA Comparison Illustration
Method 2: Compare a full roster to a partly filled column to estimate missing entries.

If one column should have a value for every person, you can compare the filled roster to the filled data column. That pattern is useful when your sheet structure makes a direct blank count less convenient or when you want to explain the gap in terms of missing records.

This solves the same counting problem from another angle. By comparing how many people exist in the roster to how many actual entries are present in the contact column, the difference shows how many records are still incomplete.

=COUNTA(A2:A6) - COUNTA(C2:C6)

Method 3: Flag each row with ISBLANK

IsBlank Flag Illustration
Method 3: Mark each row so missing data is easy to filter later.

The summary tells us how much is missing, but the status column tells us where to look. By combining ISBLANK with IF, we can label each row as MISSING or OK. Once that column is filled, filtering the problem rows becomes easy.

This solves the row-level part of the problem. Instead of only knowing that some records are missing data, we can see exactly which rows need follow-up, which makes the cleanup list much more useful in practice.

=IF(ISBLANK(C2),"MISSING","OK")

Function Explanation

1. COUNTBLANK

COUNTBLANK counts empty cells inside a range. It is direct and readable, which makes it a great fit for the summary formulas in this challenge.

Learn more this functionCOUNTBLANK

2. COUNTA

COUNTA counts non-empty cells. When you subtract the filled email count from the total roster count, the difference shows how many records are incomplete.

Learn more this functionCOUNTA

3. ISBLANK

ISBLANK checks whether a cell is empty. In this challenge, it powers the row-level flag so the sheet does more than just count the gaps.

Learn more this functionISBLANK

One thing to watch for is fake blanks. A cell that contains a space is not truly blank, so a quick cleanup step may be needed if imported data looks empty but does not count as empty.

Try Yourself

Count the missing phone numbers and email addresses first, then fill the status column so each row clearly shows whether the email field is complete or still missing.

1
Objective #1
Cell: B9

In cell B9, count the total number of missing phone numbers in Column B.

2
Objective #2
Cell: B10

In cell B10, identify the total number of missing email addresses in Column C.

3
Objective #3
Cell: D2-D6

In Column D, assign a "MISSING" flag if the Email in Column C is blank, otherwise "OK".

Tactical Arena
Objectives Met: 0 / 0
Share this challenge
Share this challenge

Let others know about this challenge!

Related Challenges
Lookup
#17
Find the Lowest Price

An Excel quote sheet lists several suppliers, and you need to identify the lowest price and who offered it.

Easy
Cleanup
#18
Generate Sequential IDs

An Excel employee sheet needs consistent IDs, and you need to generate simple and padded numbers from the row order.

Easy
Analysis
#19
Categorize Ages into Brackets

An Excel age list needs clear groups, and you need to place each person into the right bracket based on thresholds.

Easy
Analysis
#20
Highlight Weekend Shifts

An Excel shift schedule includes work dates, and you need to detect which rows fall on weekends before payroll is reviewed.

Easy
Discussion
0 Feedbacks
ExcelClash

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster—without boring lessons. Just hands-on practice that actually sticks.

Navigation
Back to Challenges
Go to Dashboard
Platform Home
Discover
SUM FunctionsLookup FunctionsConditional FunctionsLogical Functions
Support
About UsContact UsPrivacy PolicyTerms of Service
© 2026 ExcelClash, Inc. All rights reserved.
Objectives Met: 0 / 0