ISEVEN
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 2 months ago