Macro. Calculates the integer value of an expression.
INT(val)
val |
- |
A scalar or series or table. |
A scalar, series or table.
FLOOR(ARG)
int(5.73)
returns the integer value 5.
int(W1)
returns a new series by applying INT to each value of the W1 series. The data values of this new series will range between -32768 and +32767.
INT does not round to the nearest integer. To round to the nearest integer use ROUND.
See CASTINTEGER to convert a single value to an integer.