Checks whether a value is odd and returns TRUE or FALSE.
Syntaxe
ISODD(number)Arguments
numberobligatoire
The value you want to test.
The ISODD function evaluates a numeric value and returns TRUE if the number is odd, or FALSE if it is even. If the provided argument is not an integer, it is truncated toward zero before the check is performed.
=ISODD(3)→TRUE3 is an odd number.
=ISODD(4.5)→FALSE4.5 is truncated to 4, which is an even number.
Select a cell
Click on the cell where you want to display the result.
Enter the formula
Type =ISODD( followed by the number or cell reference and a closing parenthesis.
Press Enter
Press Enter to see the logical result.
The function will return a #VALUE! error if the input cannot be converted to a number.