ROUND(Expr, Decimals)
Rounds a floating point value to the decimal places denoted by parameter Decimals. E.g.
ROUND(12.346,2) returns 12.35 ROUND(12.32,1) returns 12.3
ROUND(12.346,2)
returns 12.35 ROUND(12.32,1) returns 12.3
See also FRAC, INT
Go Back