ISBLANK

    Information

    Returns TRUE if a cell is empty, FALSE otherwise.

    Translations
    EnglishISBLANK
    FrenchESTVIDE
    SpanishESBLANCO
    GermanISTLEER
    ItalianVAL.VUOTO
    PortugueseÉCÉL.VAZIA
    DutchISLEEG
    PolishCZY.PUSTA
    RussianЕПУСТО
    TurkishEBOŞSA
    CzechJE.PRÁZDNÉ
    HungarianÜRES
    SwedishÄRTOMT
    DanishER.TOM
    FinnishONTYHJÄ
    Syntax
    ISBLANK(value)

    Arguments

    • valueThe cell to check
    Examples
    =ISBLANK(A1)
    TRUE/FALSE

    Checks if A1 is empty

    =IF(ISBLANK(A1),"Empty",A1)
    Value or 'Empty'

    Shows 'Empty' for blank cells

    =COUNTIF(A:A,"")
    Blank count

    Alternative way to count blanks

    Tips & Best Practices
    • Cells with formulas returning '' are NOT blank
    • Use COUNTBLANK to count blank cells
    • Empty string '' is not considered blank
    Common Mistakes
    • Using ISBLANK on a cell containing a formula that returns an empty string, expecting TRUE - it returns FALSE, since the cell technically contains a formula, not nothing
    • Testing a cell that looks empty but actually has a stray space character, which makes ISBLANK return FALSE unexpectedly
    • Using ISBLANK on a range instead of a single cell, which doesn't work the way you might expect since it's designed to test one cell at a time
    Related Functions
    ISNUMBERTests whether a cell contains a number, a different kind of check than blank versus filled.
    COUNTBLANKCounts blank cells across an entire range instead of testing one cell.
    IFCommonly wraps ISBLANK to trigger different behavior based on whether a cell is empty.
    Frequently Asked Questions

    Why does ISBLANK return FALSE for a cell that looks empty?

    The cell probably contains a formula returning an empty string, or a stray space character - both make the cell look empty but not technically blank.

    Can ISBLANK check an entire range at once?

    Not meaningfully - it's built to test a single cell. For checking blanks across a range, use COUNTBLANK instead.

    Is there a difference between ISBLANK and checking =A1=""?

    Yes - =A1="" also returns TRUE for a cell containing a formula that evaluates to an empty string, while ISBLANK only returns TRUE for a truly empty cell.

    Need to translate a formula using ISBLANK?

    Use our translator to convert your complete formula