EVEN

Rounds the given number up to the nearest even integer.

Sample Usage

EVEN(1)
EVEN(C5)

Syntax

EVEN(number)

  • number - The number which is to be rounded.

Examples

EVEN(1) rounds the number and returns 2.
EVEN(C5) rounds the number in C5 up to the nearest even integer.

Notes

  • If number is negative, it will be rounded down to the next negative even number with greater absolute value.