To return an integer value representing the integer part of the parameter received.
Syntax
Int(numeric-expression)
Type Returned:
Numeric
Where:
numeric-expression
Must be a numeric expression.
Description
This function returns the integer part of numeric-expression.
Examples
-
A = INT( 1.5) A = 1
-
A = INT(-1.75) A = -1
-
A = INT( 5/3) A = 1
Scope
Objects Procedure object, Transaction object, Web Panel object
See also
Integer method
|