Skip to main content
SheetCraft
Math Function · beginner

ROUNDDOWN Function in Google Sheets

Rounds a number TOWARD zero to a specified number of decimal places.

Syntax

ROUNDDOWN(value, [places])

Returns: value rounded toward zero.

Excel equivalent: ROUNDDOWN (identical)

Parameters

NameRequiredDescription
valueRequiredNumber to round.
placesOptionalDecimal places. Default 0.

Examples

Truncate to dollars

=ROUNDDOWN(A2, 0)

1.99 → 1, -1.99 → -1.

Next hundred down

=ROUNDDOWN(A2, -2)

1247 → 1200.

When to use an alternative

  • ROUNDUPOpposite direction.
  • FLOORMultiple of arbitrary unit.
  • INTToward negative infinity.
  • TRUNCDiscard decimals.

Common errors and how to fix them

  • Confused with INT

    Cause: Differ for negatives.

    Fix: ROUNDDOWN toward zero; INT toward negative infinity.

Related functions

Frequently Asked Questions

ROUNDDOWN vs INT?

For positives identical. ROUNDDOWN(-2.5) = -2; INT(-2.5) = -3.

Same as TRUNC?

Nearly — TRUNC(x, n) ≡ ROUNDDOWN(x, n).

Source: Google Sheets official function reference.