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