In Excel: use =ROUNDUP(number, num_digits) — it always rounds away from zero, so 4.01 with 0 digits becomes 5 no matter how small the fraction is.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
number | required | The value to round away from zero. |
num_digits | required | Decimal places to keep. 0 rounds to a whole number, negative rounds left of the decimal point (-3 rounds to thousands). |
Related functions
Click the cell where the rounded figure should appear.
Type =ROUNDUP( and click the cell holding the raw number.
Type a comma, then the number of decimal places to keep — 0 for whole numbers.
Use a negative digit count to round to tens, hundreds or thousands: -2 rounds to the nearest hundred.
Press Enter; the result is a real number you can sum, not a display format.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
ROUNDUP rounds a number away from zero to a set number of decimal places, ignoring the usual "round half" rule entirely. Any fraction at all, however small, pushes the result up: 4.0001 rounded to zero decimals returns 5. For negative numbers "away from zero" means downward on the number line, so -4.2 becomes -5. The second argument is required — unlike some spreadsheet functions it has no default — and a negative value rounds to the left of the decimal point, which is how you round to the nearest hundred or thousand. Use it when under-stating a figure is the expensive error: shipping quantities, safety margins, capacity planning. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. Treat “round up formula in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected formula shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.
A worked example
A job needs 4.2 pallets of stock. =ROUNDUP(4.2, 0) returns 5, because you cannot ship 0.2 of a pallet and rounding down would leave the order short. For a budget headline, =ROUNDUP(18432, -3) returns 19000, rounding up to the next thousand. To keep two decimals on a fee, =ROUNDUP(12.341, 2) returns 12.35. ROUNDUP is the function to reach for whenever falling short is worse than overshooting — order quantities, material estimates and capacity figures all need the pessimistic rounding it guarantees. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.
In Google Sheets
If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Keep this page bookmarked for the next time the same question comes up. Better still, repeat the steps once in your own workbook — doing it yourself is what turns a copied answer into something you remember. Treat “round up formula in excel” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.
Common mistakes
- Omitting num_digits —
ROUNDUPrequires it and returns a "you have entered too few arguments" error without it. - Expecting -4.2 to become -4:
ROUNDUPmoves away from zero, so it returns -5. UseROUNDDOWNif you want to shrink the magnitude. - Rounding up at every intermediate step of a calculation, which compounds the bias — round once, at the end.
Frequently asked questions
What is the difference between ROUNDUP and CEILING?
ROUNDUP rounds to a number of decimal places; CEILING rounds up to a multiple of something you choose, such as the next 0.25 or the next 50. Use CEILING when the target is a step size rather than a decimal precision.
Does ROUNDUP change the underlying value or just the display?
It changes the value. The cell holds the rounded number, so later sums use the rounded figure — unlike decreasing the decimal places with a number format, which only changes what you see.
How do I round up to the nearest whole number?
Use 0 as the second argument: =ROUNDUP(A2, 0). Any fractional part at all, even 0.001, moves the result to the next integer.
Other ways people ask this
This is also commonly searched as “excel formula round up”, “excel formula to round up”, “formula for round up in excel” and “excel formula to round up to 9”. They describe the identical operation, so you are in the right place no matter how you phrased it.
Why do people search for this in so many different ways?
Because the same task has many names. “excel formula round up”, “excel formula to round up”, “formula for round up in excel” all point at the one operation explained on this page, which is why they all lead here.