Excel Function ROUNDUP

“excel function roundup” comes up constantly, so this page leads with the exact answer, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

Exact answer

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

=ROUNDUP(number, num_digits)

Arguments

Argumentrequired / optionalDescription
numberrequiredThe value to round away from zero.
num_digitsrequiredDecimal places to keep. 0 rounds to a whole number, negative rounds left of the decimal point (-3 rounds to thousands).

Related functions

ROUNDDOWNROUNDCEILING
Annotated stepsExcel
1

Click the cell where the rounded figure should appear.

2

Type =ROUNDUP( and click the cell holding the raw number.

3

Type a comma, then the number of decimal places to keep — 0 for whole numbers.

4

Use a negative digit count to round to tens, hundreds or thousands: -2 rounds to the nearest hundred.

5

Press Enter; the result is a real number you can sum, not a display format.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

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 “excel function roundup” 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. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

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. Nothing on this page is behind a login or a download: the exact answer is at the top, and the detail below it is there for when you need it. That is the whole promise here — the answer first, and just enough context to make it stick. If you take one thing from this page on “excel function roundup”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

Common mistakes

  • Omitting num_digits — ROUNDUP requires it and returns a "you have entered too few arguments" error without it.
  • Expecting -4.2 to become -4: ROUNDUP moves away from zero, so it returns -5. Use ROUNDDOWN if 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

People reach this page typing “excel roundup function”, “how to use roundup function in excel”, “how to use roundup function in excel with formula” and “how do you use the roundup function in excel”, among other phrasings; whichever wording you used, the fix above is the one you want.

Why do people search for this in so many different ways?

Because the same task has many names. “excel roundup function”, “how to use roundup function in excel”, “how to use roundup function in excel with formula” all point at the one operation explained on this page, which is why they all lead here.