Skip to content
Excel

ISBLANK function in Excel

Returns TRUE if the value is blank

=ISBLANK(value)

ISBLANK syntax and parameters

One argument, one required.

  • valueanyRequired

    The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these.

ISBLANK examples

Formulas you'll actually reuse.

  1. A status from whether the ship-date cell is empty:

    =IF(ISBLANK(D2), "Not shipped", "Shipped")

    Result"Not shipped"

  2. How many orders still have no ship date:

    =SUMPRODUCT(--ISBLANK(D2:D200))

    Result14

ISBLANK in Google Sheets

Same name — your formula ports as-is.

Try ISBLANK in the playground

Edit the example — nothing to install.

Preloaded with the ISBLANK formula from Example 1 — change anything and watch it respond.

Loading the editor…