Help Centre › Functions & Formulas
For a full list of available calculation functions, please read What calculation functions are supported.
This article describes the formula syntax and usage of the ISODD function and is applicable to both the RPA and Cloud Automate's calculate functions.
Description
Returns TRUE if number is odd, or FALSE if number is even.
Syntax
ISODD(number)
The ISODD function syntax has the following arguments:
- number - Required. The value to test. If number is not an integer, it is truncated.
Remark
- If number is nonnumeric, ISODD returns the #VALUE! error value.
Example
| Formula | Description | Result |
| =ISODD(-1) | Checks whether -1 is odd | TRUE |
| =ISODD(2.5) | Checks whether 2.5 is odd | FALSE |
| =ISODD(5) | Checks whether 5 is odd | TRUE |
Errors
For a full list of formula errors, please read Formula errors.