CumulativeSum
Calculates the sum of visible row values cumulatively.
Syntax
CODE
CumulativeSum(Numeric_expression)
Arguments
Numeric_expression | MDX expression that returns a number |
---|
Examples
The following formula will count created issues for rows cumulatively.
CODE
CumulativeSum([Measures].[Issues created])
The following formula calculates the % of resolved issues cumulatively.
CODE
CumulativeSum([Measures].[Issues resolved %])