ISEVEN(number)
=ISEVEN(4)
The ISEVEN function returns a logical value (TRUE or FALSE) based on the value of a given number. In this example, the number 4 is the argument given to the function. Since 4 is an even number, the function returns TRUE.
=ISEVEN(0)
The same principle applies to the number 0. Since 0 is an even number, the function returns TRUE.
=ISEVEN(3)
In this example, the number 3 is the argument given to the function. Since 3 is an odd number, the function returns FALSE.
The ISEVEN function is a useful tool for determining whether a number is even or odd. It returns TRUE if the number is even and FALSE if the number is odd.