Returns TRUE if the number is even, and FALSE if it is odd.
Składnia
ISEVEN(number)Argumenty
numberwymagane
The value to be tested.
The ISEVEN function evaluates a numeric value and determines its parity. If the provided number is an even integer or results in an even integer after truncation, the function returns TRUE; otherwise, it returns FALSE.
=ISEVEN(4)→TRUE4 is an even number.
=ISEVEN(7)→FALSE7 is an odd number.
Select a cell
Click on the cell where you want to display the result.
Enter the formula
Type =ISEVEN(number) and replace 'number' with the value or cell reference you want to check.
The ISEVEN function truncates the number towards zero and evaluates the resulting integer.