Contents - Index


CEIL

 

Ceil(X) returns the lowest integer greater than or equal to X.  For example:

 

Ceil(-2.8) = -2

 

Ceil(2.8) = 3

 

Ceil(X) differs from Round(X) when the argument is negative.  For example

 

Round(-2.8)=-3

 

 

See also

   Round

   Trunc

   Floor

   Mathematical Functions