Highlight Missing Required Entries

Excel Formulas › Conditional Formatting

All versionsISBLANK

Make empty required fields impossible to miss. A rule that flags blank cells — optionally only when a related field is filled — turns a form into a self-checking checklist.


Quick formula: flag a blank cell in a required column:
=A2 = ""
Highlights empty cells so gaps stand out. Combine with a condition to require a field only when the row is in use.

Functions used (tap for the full reference guide):

The example

Missing entries in a required column are flagged.

AB
1NameEmail
2Annann@x.com
3Bo(blank — flagged)

The formula

Flag empty required cells:

=A2 = "" // highlight blanks

How it works

An emptiness test drives the highlight:

  1. =A2="" (or =ISBLANK(A2)) is TRUE for an empty cell.
  2. Apply it to the required column so blanks light up — an instant “you missed this” cue.
  3. Make it conditional: =AND($A2<>"", B2="") flags a missing email only when the row has a name (i.e. is actually in use).
  4. Pair with Data Validation if you want to block submission, not just highlight gaps.

ISBLANK vs ="". ="" treats a formula returning an empty string as blank; ISBLANK does not (it’s only TRUE for truly empty cells). For form fields, =A2="" is usually the friendlier choice.

Try it: interactive demo

Live demo

Rows “name,email”; missing email flagged when name present.

Variations

Plain blank flag

Any empty cell:

=A2 = ""

Required only if row used

Conditional:

=AND($A2<>"", B2="")

Count missing

How many gaps:

=COUNTBLANK(required)

Pitfalls & errors

Formula blanks. A cell with ="" looks empty but isn’t to ISBLANK. Use =A2="" to treat both as blank.

Spaces aren’t blank. A cell with just a space isn’t empty — test TRIM(A2)="" to catch those.

Highlight ≠ enforce. CF shows gaps; it can’t prevent saving. Add validation if a field must be filled.

Practice workbook

📊
Download the free Highlight Missing Required Entries practice workbook
A required-field CF rule with the conditional and count variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I highlight empty required cells in Excel?
Add a formula CF rule =A2="" on the required column to flag blanks. To require a field only when the row is used, use =AND($A2<>"", B2="").
What is the difference between ISBLANK and =""?
=A2="" treats a formula returning an empty string as blank; ISBLANK is TRUE only for truly empty cells. For forms, =A2="" is usually better.
Can conditional formatting prevent leaving a field blank?
No — it only highlights. Use Data Validation to actually block or warn on empty required fields.

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Count blank cells · Fill blanks down · Highlight entire row

Function references: ISBLANK · AND