Round

Use the round function to round a Decimal value to a precision you specify. The round function returns a Decimal value.

Function format

round(Decimal value, Integer precision)

  • value: the value which is rounded.
  • precision (optional): amount of places the Decimal value is rounded to.

Round example

round(3.1415926, 2)

The formula returns the Decimal value 3.14.