ExcelExcel 2024+
ISOMITTED function in Excel
Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE
=ISOMITTED(argument)ISOMITTED syntax and parameters
One argument, one required.
- argumentanyRequired
ISOMITTED examples
Formulas you'll actually reuse.
An optional LAMBDA argument — no discount passed, so the price comes back unchanged:
=LAMBDA(price, [discount], IF(ISOMITTED(discount), price, price * (1 - discount)))(C2)Result
1250The same LAMBDA with the optional argument supplied:
=LAMBDA(price, [discount], IF(ISOMITTED(discount), price, price * (1 - discount)))(C2, 0.1)Result
1125
ISOMITTED in Google Sheets
No direct equivalent — here's the way around.
Try ISOMITTED in the playground
Edit the example — nothing to install.
Preloaded with the ISOMITTED formula from Example 1 — change anything and watch it respond.
Loading the editor…
ISOMITTED errors
What they mean — and the fixes.
#VALUE!ISOMITTED only works on a LAMBDA parameter — outside a LAMBDA there is nothing that can be omitted.
Related functions
More ways Excel gets this done.
- CELLReturns information about the formatting, location, or contents of a cellThis function is not available in Excel for the web.InfoGoogle Sheets
- ERROR.TYPEReturns a number corresponding to an error typeInfoGoogle Sheets
- INFOReturns information about the current operating environmentThis function is not available in Excel for the web.InfoNo Google Sheets equivalent
- ISBLANKReturns TRUE if the value is blankInfoGoogle Sheets
- ISERRReturns TRUE if the value is any error value except #N/AInfoGoogle Sheets
- ISERRORReturns TRUE if the value is any error valueInfoGoogle Sheets