INT
Description:
The MDX Int function returns the next lowest integer value of an expression.
Syntax:
INT(Numeric_Expression)
Return Type:
SCALAR
Parameters:
Parameter | Description |
|---|---|
Numeric_Expression | Numeric expression to apply the mathematical operation to. |
Example:
WITH MEMBER [Measures].[Result] AS INT([Measures].[Sales]) SELECT [Measures].[Result] ON 0 FROM [AdventureWorksMF]