Difference between revisions of "CEILING()"
From Recital Documentation Wiki
Helengeorge (Talk | contribs) (→Class) |
Helengeorge (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
==Purpose== | ==Purpose== | ||
Function to return the smallest integer that is greater than or equal to a given value | Function to return the smallest integer that is greater than or equal to a given value | ||
Line 29: | Line 27: | ||
==Products== | ==Products== | ||
− | Recital | + | Recital Server, Recital |
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:Numeric Data]] | [[Category:Numeric Data]] | ||
[[Category:Numeric Data Functions]] | [[Category:Numeric Data Functions]] |
Latest revision as of 16:07, 27 November 2009
Purpose
Function to return the smallest integer that is greater than or equal to a given value
Syntax
CEILING(<expN>)
See Also
BETWEEN(), FLOOR(), ISDIGIT(), MAX(), MIN(), SIGN()
Description
The CEILING() function is used to return the smallest integer that is greater than or equal to a given value in the numeric expression <expN>.
Example
? ceiling(354.89) 355 ? ceiling(354.19) 355 ? ceiling(-354.89) -354
Products
Recital Server, Recital