ISODD (is an odd number?)

<< Click to Display Table of Contents >>

ISODD (is an odd number?)

Syntax:

ISODD(Number)

Description:

Returns TRUE if the specified Number is odd, FALSE if it is even.

Note:

Number should be an integer, digits right of the decimal point are ignored.

Example:

ISODD(1) returns TRUE

ISODD(1.75) returns TRUE

ISODD(2) returns FALSE

ISODD(2.75) returns FALSE

See also:

ISEVEN