floor

Syntax:

Value Number  floor(Number num)

Description:

Returns the floor of num (the largest integer smaller than num).

Examples:

($b1:$b5) = floor($a)
Before:
AB C
10.34
21.99
3-3.7
44
50
6
After:
AB C
10.340
21.991
3-3.7-4
444
500
6
($a1) = floor($f3)