Syntax
| Parameter | Description |
|---|---|
| number | Parameter of the ISEVEN function. |
Examples
Check even number
=ISEVEN(4)
Alternating formatting
=ISEVEN(ROW())
Process even items
=IF(ISEVEN(A1), A1/2, A1)
Common Errors
Occurs when the argument is non-numeric text like "hello". Text that looks like a number ("4") may be auto-converted in some apps.
Tips
ISEVEN(0) returns TRUE. Zero is mathematically even (divisible by 2 with no remainder).
ISEVEN(3.9) returns FALSE because 3.9 is truncated to 3, which is odd. The function checks the integer part only.
=MOD(A1,2)=0 does the same thing as ISEVEN(A1). MOD is more flexible for checking divisibility by other numbers (3, 5, etc.).
Try ISEVEN in Viztab
Import your data and use ISEVEN with 370+ other formulas. No signup required.
Open Viztab