ISODD Function

ISODD Function

ISODD Function

Return TRUE when a number is odd.

ExcelClash Team
PUBLISHED

Summary

ISODD returns TRUE when a number is odd and FALSE when it is not. Like ISEVEN, it is often used in formatting patterns, simple grouping rules, and cycle checks.

The decimal rule is the same here too. Excel truncates the decimal part before checking, so 11.9 is treated as 11.

Purpose

Check odd parity

Returns TRUE for odd integers, including negative odd numbers.

Return Value

TRUE or FALSE

TRUE means odd. FALSE means even.

Syntax

=ISODD(number)

You can use a number, a formula, or a cell reference.

Arguments

  • number - [required] The value you want to test for odd parity.

ISODD vs Other Functions

Function Main job Difference
ISODD Checks for odd integers Truncates decimals first.
ISEVEN Checks for even integers The opposite parity test.
MOD Returns a remainder More flexible when you need the math itself.
TRUNC Removes decimals Useful when you want to make the truncation explicit.

Using ISODD

This function is useful when odd values need special treatment. It works well in alternating layouts, audit sampling, and simple A/B style logic where odd-numbered items go one way and even-numbered items go another.

It is also worth remembering that zero returns FALSE here because zero is even, not odd.

Example 1 - Check odd row numbers

This is a simple layout pattern.

=ISODD(ROW())
Check Answer
Challenge #1
Target: Sheet1!F1
Odd Check

Check whether A1 is odd. Formula: =ISODD(A1).

Example 2 - See the truncation rule

Decimals are truncated before parity is checked.

=ISODD(11.9) // Returns TRUE because Excel checks 11.
Check Answer
Challenge #2
Target: Sheet1!F2
Truncated Decimal

Check whether 11.9 is treated as odd. Formula: =ISODD(11.9).

Example 3 - Check a negative odd value

Negative odd integers still return TRUE.

=ISODD(-3) // Returns TRUE.
Check Answer
Challenge #3
Target: Sheet1!F3
Odd Row

Check whether the current row number is odd. Formula: =ISODD(ROW()).

Example 4 - Use it for a split rule

This keeps an odd-even split readable.

=IF(ISODD(B1),"Audit Required","Standard Path")
Check Answer
Challenge #4
Target: Sheet1!F4
Negative Odd

Check whether -3 is odd. Formula: =ISODD(-3).

Conclusion Recap

  • Main job: ISODD checks whether a number is odd.
  • Decimal rule: Excel truncates before checking.
  • Zero: It returns FALSE because zero is even.
  • Good uses: Layout logic, sampling rules, and grouping patterns.
Tactical Arena
Select Scenario:
Share ISODD Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.