Functions
EVEN
Round up to nearest even integer
Try it
When to use it
When should I use EVEN?
Use EVEN to round a number up to the nearest even integer; useful when items must be packed or grouped in pairs.
Used in
Syntax
EVEN(number)Examples
=EVEN(3) // => 4
=EVEN(-0.6) // => -2
=EVEN(1.5) // => 2