Help: Round Function

The rounding function: ROUND(X) is the nearest integer to X. It is defined for all X. If N is an integer, ROUND(X) = N whenever
        N - 1/2 <= X < N + 1/2
For the greatest integer less than or equal to X, use the floor function.
Ceil function
Floor function
Mathematical formulas
Help index