Contents - Index


FLOOR

 

FLOOR(Arg) will return a value equal to the largest integer value that is less than or equal to the value of Arg.  Note that FLOOR differs from TRUNC when Arg is less than zero.  For example TRUNC(-2.5) = -2 whereas FLOOR(-2.5) = -3.   

 

See also:

  CEIL

  TRUNC

  ROUND

  Mathematical Functions