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