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