ISEVEN function

ISEVEN returns TRUE if the value is an even integer, or FALSE if the value is an odd integer.

Syntax

ISEVEN(value)

value is the value to be checked.

If value is not an integer, any digits after the decimal point are ignored. The sign of value is also ignored.

Examples

=ISEVEN(48) returns TRUE.

=ISEVEN(33) returns FALSE.

=ISEVEN(0) returns TRUE.

=ISEVEN(-2.1) returns TRUE.

=ISEVEN(3.999) returns FALSE.