Is_nan
  • 27 May 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Is_nan

  • Dark
    Light
  • PDF

Article Summary

Returns true if the given number is NaN, a special "not a number" symbol. For example, dividing any number by 0 results in NaN.

Function signature

IS_NAN(number: Number) => Boolean
ParameterDescription
NumberNumber to check

Examples

FormulaReturn value
IS_NAN(NaN)true
IS_NAN(123)false

Was this article helpful?

What's Next