Int
Rounds the values in its first argument to the specified number of decimal places.
Syntax
Int(Numeric_Expression)
Arguments
Numeric_Expression | MDX expression that returns a number. |
|---|
Example:
Int(7.23) will return 7
Int(0.79) will return 0
Int(-0.79) will return -1
Int(-7.23) will return -8