EVEN Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel EVEN function rounds a number up (away from zero) to the nearest even integer — useful for pairing items or sizing in twos.


Quick answer:
=EVEN(3) up to next even = 4

Syntax

=EVEN(number)
ArgumentDescription
numberRequiredThe number you want to round up to the nearest even integer.

How to use it

EVEN rounds away from zero to the next even whole number. Any value that isn't already an even integer bumps up to the next one:

=EVEN(3) // next even = 4
=EVEN(2.1) // next even = 4
=EVEN(-3) // away from zero = -4

Because it rounds away from zero, negative inputs go to the more negative even number. An input that is already even (like 4) is returned unchanged. EVEN is the even-number counterpart of ODD.

2.1 jumps to 4, not 2. EVEN rounds up to the next even integer, so even a tiny fraction past 2 pushes the result to 4. Use ROUND or MROUND(x, 2) if you want the nearest even multiple instead.

Try it: interactive demo

Live demo

Pick a EVEN example to see the formula and its result.

Result:

Practice workbook

📊
Download the free EVEN practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Does EVEN round to the nearest even number?
No — it always rounds up (away from zero) to the next even integer. =EVEN(2.1) is 4, not 2.
How does EVEN handle negative numbers?
It rounds away from zero, so =EVEN(-3) returns -4, the more negative even number.
What does EVEN return for a number that's already even?
It returns that number unchanged — =EVEN(4) is 4. Odd integers and any fraction round up to the next even value.
What's the difference between EVEN and ODD?
EVEN rounds up to the nearest even integer; ODD rounds up to the nearest odd integer. Both round away from zero.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: ODD · MROUND · ROUNDUP · CEILING · INT