Excel
ROUND function in Excel
Rounds a number to a specified number of digits
=ROUND(number, num_digits)ROUND syntax and parameters
Two arguments, two required.
- numbernumberRequired
The number that you want to round.
- num_digitsnumberRequired
The number of digits to which you want to round the number argument.
ROUND examples
Formulas you'll actually reuse.
Gross price to the cent — no floating-point tails in totals:
=ROUND(B2 * 1.19, 2)Result
23.79To the nearest thousand — negative digits round left of the point:
=ROUND(B2, -3)Result
148000
ROUND in Google Sheets
Same name — your formula ports as-is.
Try ROUND in the playground
Edit the example — nothing to install.
Preloaded with the ROUND formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Excel gets this done.
- ABSReturns the absolute value of a numberMathGoogle Sheets
- ACOSReturns the arccosine of a numberMathGoogle Sheets
- ACOSHReturns the inverse hyperbolic cosine of a numberMathGoogle Sheets
- ACOTReturns the arccotangent of a numberMathGoogle Sheets
- ACOTHReturns the hyperbolic arccotangent of a numberMathGoogle Sheets
- AGGREGATEReturns an aggregate in a list or databaseMathNo Google Sheets equivalent