ISBLANK Function

Checks whether a cell value is blank

Syntax

ISBLANK(value)
  • value
    The value, typically within a cell, to check.

Sample usage

IF(ISBLANK([Task Name]1), "Cell is blank", "Cell isn't blank")

Usage notes

  • This function is typically used inside of another function, for example: IF, COUNTIF, or SUMIF.

Examples

This example references the following sheet information (some fields have been left intentionally blank):

 Clothing ItemUnits SoldIn Stock?Status% Complete
1T-Shirt trueGreen100%
2Pants78trueYellow25%
3Jacket42falseRed 

Given the table above, here are some examples of using ISBLANK in a sheet:

FormulaDescriptionResult
=IF(ISBLANK([Units Sold]1), "Blank", "Not blank")Returns the string Blank if row 1 of the Units Sold column contains no value. Otherwise, it returns Not blank.Blank
=IF(NOT(ISBLANK([Units Sold]2)), "Gained revenue","No Sale")Returns the string Gained revenue if row 2 of the Units Sold column contains a value, and No sale if the field is blankGained revenue
=IF(ISBLANK([% Complete]3), "Red")Returns Red if row 3 of the % Complete column is blankRed

Still need help?

If you have an Enterprise plan, you can use AI to help write and troubleshoot formulas.

Use the Formula Handbook template to find more support resources and view 100+ formulas, including a glossary of every function that you can practice working with in real time, and examples of commonly used and advanced formulas.

Find examples of how other Smartsheet customers use this function or ask about your specific use case in the Smartsheet online Community.

Ask the Community