Round Half Down (Round 0.5 Toward Zero)

Excel Formulas › Round

All versionsROUNDDOWN

Excel’s ROUND rounds a .5 away from zero (2.5 → 3). When a rule requires rounding halves down instead (2.5 → 2), a small ROUNDUP/subtraction trick does it.


Quick formula: round to the nearest integer, halves going down:
=ROUNDUP(A2 - 0.5, 0)
Subtracting 0.5 before rounding up turns the .5 tie into a round-down.

Functions used (tap for the full reference guide):

The example

2.5 rounds down to 2, not up to 3.

AB
1ValueHalf down
22.52
32.63

The formula

The formula:

=ROUNDUP(A2 - 0.5, 0) // halves go down

How it works

How it works:

  1. Standard ROUND(2.5, 0) gives 3 — halves round away from zero.
  2. To round halves down, use ROUNDUP(value - 0.5, 0): 2.5 − 0.5 = 2.0, which rounds up to 2.
  3. Values above the half (2.6 → 2.1 → 3) still round normally; only the exact .5 changes.
  4. This matters for tax tables, scoring rules, and regulations that specify “round half down” explicitly.

Rounding conventions: ROUND = half away from zero; this trick = half down; MROUND(value, 2)/2-style or banker’s rounding = half to even. Always confirm which rule a standard requires — the differences only show on exact halves but can matter for audited totals.

Try it: interactive demo

Live demo

Enter a value (try x.5).

ROUND · Half-down

Variations

Half up (default)

Standard ROUND:

=ROUND(A2, 0)

Half to even (banker’s)

Ties to even:

=MROUND(A2, 2)/2

Half down to cents

2 decimals:

=ROUNDUP(A2*100 - 0.5, 0)/100

Pitfalls & errors

Only the exact .5 differs. All other values round the same as normal ROUND.

Negatives need care. Test the trick on negative inputs if your data has them; the half-down direction can flip.

Know your standard. Confirm whether the rule is half-down or half-to-even before relying on either.

Practice workbook

📊
Download the free Round Half Down (Round 0.5 Toward Zero) practice workbook
A round-half-down sheet with the half-up, banker’s, and half-down-to-cents variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I round 0.5 down instead of up in Excel?
Excel's ROUND rounds halves away from zero. To round halves down, use =ROUNDUP(value - 0.5, 0), which turns the exact .5 into a round-down.
What is banker's rounding?
Round half to even — exact halves round to the nearest even number. It reduces bias across many roundings and is required by some accounting standards.
Does this change non-half values?
No — only an exact .5 rounds differently. Every other value rounds the same as standard ROUND.

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: Roundup & rounddown · Round to nearest · Round to cents

Function references: ROUNDDOWN