Tip Printed from ExcelTip.com
Rounding numerical calculation results in Microsoft Excel


We will demonstrate rounding numbers using a simple calculation (cell B1)

Enter the following value in cell A1: 650.00

Enter the following formula in cell B1: =SUM(A1>500,(A1)*0.0865)

The Result: 57.225


Rounding the result to the nearest integer: =ROUND(SUM(A1>500,(A1)*0.0865),0)

  • Result = 57.00


  • Rounding up the result: =ROUNDUP(SUM(A1>500,(A1)*0.0865),0)
  • Result = 58.00


  • Rounding down the result: =ROUNDDOWN(SUM(A1>500,(A1)*0.0865),0)
  • Result = 57.00