CEILING

Syntax

CEILING (numeric_expression)

Description

Rounds up to the smallest integer that is greater than or equal to the specified expression.

Arguments

numeric_expression Any number that can be converted to a Double64 number.

Returns

A numeric value in Double64 format.

Examples

CEILING ( 54.30 )

Returns: 55.00

CEILING ( - 29.90 )

Returns: - 29.00

If MyEntity.Cost contains (32.50) then CEILING (MyEntity.Cost)

Returns: 33

Related Topics

Math Functions

FLOOR