<< Click to Display Table of Contents >> ISEVEN (is an even number?) |
Syntax:
ISEVEN(Number)
Description:
Returns TRUE if the specified Number is even, FALSE if it is odd.
Note:
Number should be an integer. Digits right of the decimal point are ignored.
Example:
ISEVEN(2) returns TRUE
ISEVEN(2.75) returns TRUE
ISEVEN(3) returns FALSE
ISEVEN(3.75) returns FALSE
See also: