round
Syntax:
Value
Integer
round
(
Number
num)
Description:
Rounds
num
to the nearest integer.
Examples:
($b1:$b5) = round($a)
Before:
A
B
C
1
0.34
2
1.99
3
-3.7
4
4
5
0
6
After:
A
B
C
1
0.34
0
2
1.99
2
3
-3.7
-4
4
4
4
5
0
0
6
($a1) = round($f3)