ROUND

Calculates a number rounded, will return the nearest round number to a significant set of digits.

Syntax

double? ROUND(double? value, int digits)
decimal? ROUND(decimal? value, int decimals)

Example

ROUND(12.34567,2)

Returns '12.35'.