ISEVEN checks whether a number is even, returning TRUE or FALSE.
ISEVEN returns TRUE if a number is even, and FALSE if it is odd. Decimal numbers are rounded down to a whole number before the check.
Common uses include alternating row formatting logic and any calculation that needs to treat odd and even cases differently.
=ISEVEN(number)| Argument | Description |
|---|---|
| number required | The number to test. Decimals are truncated first. |
=ISEVEN(4)Returns TRUE.
=ISEVEN(7)Returns FALSE.
=IF(ISEVEN(ROW()),"Even row","Odd row")Combines with ROW() to apply different logic depending on whether the current row number is even or odd.
ISEVEN(4.9) checks 4, not 4.9, and returns TRUE — the decimal portion is simply dropped before testing.
ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.
Start practicing free →