Skip to content
Google Sheets

ISODD function in Google Sheets

Checks whether the provided value is odd.

=ISODD(value)

ISODD syntax and parameters

One argument, one required.

  • valueanyRequired

    The value to be verified as odd. ISODD returns TRUE if value is an odd integer or a reference to a cell containing an odd integer, and FALSE otherwise.

ISODD examples

Formulas you'll actually reuse.

  1. Is the row's ID number odd?

    =ISODD(B2)

    ResultFALSE

  2. Every other row for banding — pair with conditional formatting:

    =IF(ISODD(ROW()), "shade", "")

    Result"shade"

ISODD in Excel

Same name — your formula ports as-is.

Try ISODD in the playground

Edit the example — nothing to install.

Preloaded with the ISODD formula from Example 1 — change anything and watch it respond.

Loading the editor…