Contents
Display Legacy Contents

 Print
    Ceiling      
This Function returns a <numeric>, which is the smallest following integer of the specified Value.

Parameters

Value <numeric>
  Value to get the smallest following integer from.

     
Example 1
  Example 2   Example 3
Ceiling(2.4)

Result = 3
  Ceiling(2.6)

Result = 3
  Ceiling(-2.4)

Result = -2
         
Example 4   Example 5   Example 6
Ceiling(-2.6)

Result = -2
  Ceiling(2)

Result = 2
  Ceiling(-2)

Result = -2

See also
Samples
Sample 1
Sample 2
 
Updated: 3/25/2013 11:38 AM