ceil
Round toward positive infinity.
Syntax
Section titled “Syntax”B = ceil(A)Description
Section titled “Description”Returns the smallest integer >= A. For positive numbers same as floor + 1 if not integer; for negative numbers same as truncation.
Examples
Section titled “Examples”ceil(2.3) % 3ceil(-2.7) % -2