EXP
Description:
The MDX Exp function returns the exponent of an expression; that is, the value of e (the base of natural logarithms) raised to the power of the expression.
Syntax:
EXP(Numeric_Expression)
Return Type:
NUMERIC_EXPRESSION
Parameters:
Parameter | Description |
|---|---|
Numeric_Expression | Numeric expression to apply the mathematical operation to. |
Example:
WITH MEMBER [Measures].[Result] AS EXP([Measures].[Sales]) SELECT [Measures].[Result] ON 0 FROM [AdventureWorksMF]