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