ISODD checks whether a number is odd, returning TRUE or FALSE — the counterpart to ISEVEN.
ISODD returns TRUE if a number is odd, and FALSE if it is even. Like ISEVEN, decimal numbers are truncated to a whole number before the check.
It is functionally the exact opposite of ISEVEN for any given whole number.
=ISODD(number)| Argument | Description |
|---|---|
| number required | The number to test. Decimals are truncated first. |
=ISODD(7)Returns TRUE.
=ISODD(4)Returns FALSE.
=IF(ISODD(A2),"Flag","OK")Useful in any scheme where odd-numbered items need separate handling, like alternating batches.
For any real number they do agree exactly — the two are mathematically equivalent ways of asking the same question.
ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.
Start practicing free →