ceil

Syntax:

Value Number  ceil(Number num)

Description:

Returns the ceiling of num (the smallest integer larger than num).

Examples:

($b1:$b5) = ceil($a)
Before:
AB C
10.34
21.99
3-3.7
44
50
6
After:
AB C
10.341
21.992
3-3.7-3
444
500
6
($a1) = ceil($f3)