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