Skip to main content
SheetCraft
Math Function · beginner

ROUNDUP Function in Google Sheets

Rounds a number AWAY from zero to a specified number of decimal places.

Syntax

ROUNDUP(value, [places])

Returns: value rounded away from zero.

Excel equivalent: ROUNDUP (identical)

Parameters

NameRequiredDescription
valueRequiredNumber to round.
placesOptionalDecimal places. Default 0.

Examples

Always round up to next dollar

=ROUNDUP(A2, 0)

1.01 → 2, 1.99 → 2.

Next hundred

=ROUNDUP(A2, -2)

1247 → 1300.

Negatives

=ROUNDUP(-1.4, 0)

Returns -2.

When to use an alternative

  • ROUNDDOWNOpposite direction.
  • CEILINGMultiple of arbitrary unit.
  • ROUNDStandard half-away-from-zero.

Common errors and how to fix them

  • Confused with CEILING

    Cause: Different scopes.

    Fix: ROUNDUP for decimal places, CEILING for multiples.

Related functions

Frequently Asked Questions

Negative behavior?

Away from zero — ROUNDUP(-1.4) = -2.

ROUNDUP vs CEILING?

ROUNDUP to decimal places; CEILING to arbitrary multiples like 0.5.

Source: Google Sheets official function reference.