Round to Even or Odd (EVEN & ODD)

Excel Formulas › Round

All versionsEVEN

EVEN rounds a number up to the next even integer; ODD rounds up to the next odd one. Handy for packaging in pairs, two-sided printing, or any quantity that must land on an even or odd count.


Quick formula: round A2 up to the next even number:
=EVEN(A2)
EVEN always rounds away from zero to an even integer; ODD does the same to an odd integer.

Functions used (tap for the full reference guide):

The example

3 rounds up to even 4; 4 to odd 5.

AB
1ValueEVEN / ODD
234 / 3
344 / 5

The formula

The formula:

=EVEN(A2) vs =ODD(A2) // round up to even/odd

How it works

How it works:

  1. EVEN(value) rounds up to the nearest even integer — 2.1 and 3 both become 4.
  2. ODD(value) rounds up to the nearest odd integer — 2 and 2.1 both become 3.
  3. Both round away from zero, so negatives go more negative (EVEN(-1.5) = -2).
  4. Use them for things that come in pairs (EVEN) or need a center (ODD), like seats, sheets, or panel counts.

Don’t confuse with ISEVEN/ISODD. EVEN/ODD round a number to an even/odd integer; ISEVEN/ISODD test whether a whole number is even or odd and return TRUE/FALSE. Different jobs entirely.

Try it: interactive demo

Live demo

Enter a value.

EVEN · ODD

Variations

Test even/odd

TRUE/FALSE:

=ISEVEN(A2)

Round to nearest even

Banker’s style:

=MROUND(A2, 2)

Next multiple of 2

Same as EVEN for positives:

=CEILING(A2, 2)

Pitfalls & errors

Always rounds up. EVEN/ODD round away from zero, never down — 4.0 stays 4 but 4.1 jumps to 6 for EVEN.

Not a parity test. For TRUE/FALSE use ISEVEN/ISODD instead.

Negatives go outward. EVEN(-1.5) = -2, not 0.

Practice workbook

📊
Download the free Round to Even or Odd (EVEN & ODD) practice workbook
An EVEN/ODD sheet with the test, nearest-even, and multiple-of-2 variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I round up to the next even number in Excel?
Use =EVEN(value). It rounds up (away from zero) to the nearest even integer; =ODD(value) does the same to an odd integer.
What's the difference from ISEVEN?
EVEN rounds a number to an even integer; ISEVEN tests whether a number is even and returns TRUE or FALSE.
How do EVEN and ODD handle negatives?
They round away from zero, so EVEN(-1.5) is -2 and ODD(-2.1) is -3.

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Round to nearest · Round up/down to a multiple · ISEVEN & ISODD

Function references: EVEN · ODD