The EVEN function returns the number passed as an argument rounded to the nearest even number that is greater than or equal to the argument considered in absolute value (that is, to the closest even number that is farther from zero than the number in question).
EVEN(
number
)
- number: Number to round.
The EVEN function returns an integer.
If number is a positive value, EVEN returns the closest even number greater than or equal to number. However, if number is a negative number, EVEN returns the closest pair less than or equal to number. That is, the EVEN function preserves the sign of the number:
If number is an integer and even number, the same number is returned.