ISEVEN
Returns true if the specified number is even and false if the number is odd.
Syntax
=ISEVEN(number)
Arguments
| Argument | Type | Description |
|---|---|---|
| number | Number | The number to test |
Examples
=ISEVEN(1) → false
Tests whether the number 1 is even.
=ISEVEN(2) → true
Tests whether the number 2 is even.
=ISEVEN(@"Property 1") → false
Tests whether the shape data property @"Property 1" (123) is even.
Updated over 1 year ago