Math Excel Formula

ROUNDDOWN Formula in Excel: Examples, Syntax, Tips

Learn the ROUNDDOWN formula in Excel with a beginner-friendly explanation, syntax, copy-paste examples, step-by-step instructions, and common mistakes.

Copy-paste examplesBeginner friendlyCommon mistakesStep-by-step

💡 Ideas for You

Helpful learning resources for ROUNDDOWN formula.

4 useful links
📚 Step-by-step booksBeginner-friendly learning resources from Create & Learn.📘 Formula guideBooks and references for math Excel formulas.🧮 Formula cheat sheetsQuick references for common spreadsheet formulas.📊 Reporting guidesResources for turning formula results into useful reports.

Quick answer

The ROUNDDOWN formula rounds a number down, toward zero.

Starting formula
=ROUNDDOWN(B2,2)

Syntax

Use this syntax as the pattern, then replace the sample arguments with your own cells, ranges, and criteria.

Syntax
=ROUNDDOWN(number, num_digits)

When to use it

Math formulas are the base of most spreadsheets. They help you total numbers, round values for reports, handle remainders, generate random values, and summarize rows without manual calculation.

  • Add sales by row or category
  • Round prices to clean values
  • Build a running total
  • Calculate discounts and adjustments

Example worksheet layout

Test the formula in a small worksheet first. This makes it easier to confirm the result before copying the formula down hundreds of rows.

Column or rangeWhat it represents
ACategory or row label
BInput value or amount
CCalculated result

Copy-paste examples

These examples move from simple to more practical versions. Start with the beginner examples, confirm the result, then adapt the intermediate and advanced versions.

Beginner

Basic ROUNDDOWN example

Example formula
=ROUNDDOWN(B2,2)

Use the simple version first and compare the result to a manual check.

Beginner

Copy down a table

Example formula
=ROUNDDOWN(B3,2)

After testing the first row, copy the formula down the rest of the column.

Intermediate

Use a fixed input cell

Example formula
=ROUNDDOWN(B2,2)

Lock assumptions, targets, or thresholds with dollar signs when needed.

Intermediate

Use an Excel Table

Example formula
=ROUNDDOWN(B2,2)

Tables make formulas more readable and resilient.

Advanced

Make the formula report-safe

Example formula
=IFERROR(ROUNDDOWN(B2,2),"")

Avoid visible errors in a final report when inputs are missing.

Advanced

Use LET for clear logic

Example formula
=LET(result,ROUNDDOWN(B2,2),result)

LET helps document the calculation inside the formula itself.

How to use it step by step

  1. Put your raw data in clear columns with headers such as Amount, Date, Status, Region, or Customer.
  2. Paste the starting formula into the first result cell, usually row 2.
  3. Replace sample references such as A2, B2, or $F$2:$F$100 with the cells in your own worksheet.
  4. Check the result on a few rows where you already know the expected answer.
  5. Copy the formula down only after the first row returns the right result.

Common mistakes and fixes

  • The referenced range does not include all rows.
  • The cell format makes the result look wrong even when the formula is correct.
  • A fixed assumption cell was copied down without dollar signs.
  • Test the formula on a few known rows before using it across a full report.

Beginner tips

  • Use a small sample first so you can see exactly how the ROUNDDOWN formula behaves.
  • Convert your source range into an Excel Table when the data will grow over time.
  • Add a short note near important formulas so future users know what each input represents.

Related formula examples