Rows has joined Superhuman. Learn more. The Superhuman Privacy Policy and Terms will apply as of June 16.

ISEVEN

Returns TRUE if the number is even (divisible by 2), and FALSE if the number is odd or not a number. This function works with numeric values and will return FALSE for text,logical values,or errors

Parameter List

Syntax
ISEVEN(number)
number

The value to test. For example: 4, -6, A1, or 2.8. Non-numeric values will return FALSE.

More details

ISEVEN tests if a number is evenly divisible by 2. It returns TRUE for even numbers (including 0 and negative even numbers) and FALSE for odd numbers. Non-numeric values like text, logical values, dates, and errors will return FALSE. Decimal numbers are truncated to integers before testing.

Examples

ISEVEN() returns 1