Skip to content
Google Sheets

ISEVEN function in Google Sheets

Checks whether the provided value is even.

=ISEVEN(value)

ISEVEN syntax and parameters

One argument, one required.

  • valuenumberRequired

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

ISEVEN examples

Formulas you'll actually reuse.

  1. Is the row's ID number even?

    =ISEVEN(B2)

    ResultTRUE

  2. Total for the even-numbered orders only:

    =SUMPRODUCT(--ISEVEN(B2:B200), C2:C200)

    Result74100

ISEVEN in Excel

Same name — your formula ports as-is.

Try ISEVEN in the playground

Edit the example — nothing to install.

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

Loading the editor…