ISODD (Primitive Spread Function) tests if a number is odd.
SYNTAX:
ISODD(value)
REMARKS:
If the number specified by the value argument is odd, then the function returns 1 (True). If the number specified by the value argument is even, then the function returns 0 (False).
Specify a numeric value, expression, or cell reference for the value argument.
EXAMPLES:
ISODD(B3)
ISODD(12) = 0 (False)
ISODD(2.5) = 0 (False)
ISODD(3.4) = 1 (True)