ISEVEN function
ISEVEN(Number) ISEVEN(Number)
Number
Number or { Number }
The number to check.
Returns
Logical or { Logical }
Whether the given number is even.
Returns whether the given number is even. ISEVEN(2)ISEVEN(2) returns TRUE and ISEVEN(3)ISEVEN(3) returns FALSE.
An even number is evenly divisible by 2. To determine if a number is evenly divisible by another number, use the MOD function. These formulas are equivalent:
ISEVEN(Field1)ISEVEN(Field1)
To determine if a number is odd, consider using the ISODD function.