Google Sheets
ISBLANK function in Google Sheets
Checks whether the referenced cell is empty.
=ISBLANK(value)ISBLANK syntax and parameters
One argument, one required.
- valueanyRequired
Reference to the cell that will be checked for emptiness. ISBLANK returns TRUE if value is empty or a reference to an empty cell, and FALSE if it contains data or a reference to data.
ISBLANK examples
Formulas you'll actually reuse.
A status from whether the ship-date cell is empty:
=IF(ISBLANK(D2), "Not shipped", "Shipped")Result
"Not shipped"How many orders still have no ship date:
=SUMPRODUCT(--ISBLANK(D2:D200))Result
14
ISBLANK in Excel
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…
Related functions
More ways Google Sheets gets this done.
- CELLReturns the requested information about the specified cell.InfoExcel
- ERROR.TYPEReturns a number corresponding to the error value in a different cell.InfoExcel
- ISDATEReturns whether a value is a date.InfoNo Excel equivalent
- ISEMAILChecks whether a value is a valid email address.InfoNo Excel equivalent
- ISERRChecks whether a value is an error other than `#N/A`.InfoExcel
- ISERRORChecks whether a value is an error.InfoExcel