Forum Discussion
Running total problems
- 3 years ago
Anonymous , The data you have show stage is sortable, you can use
running sum = CALCULATE(totals[total_count], FILTER(stages, stages[stage] <= MAX(stages[stage])))
Or Create a stage no column
stages no = right([Stage], len([Stage]) -5)
and then try
running sum = CALCULATE(totals[total_count], FILTER(stages, stages[stage no] <= MAX(stages[stage no])))
Anonymous , The data you have show stage is sortable, you can use
running sum = CALCULATE(totals[total_count], FILTER(stages, stages[stage] <= MAX(stages[stage])))
Or Create a stage no column
stages no = right([Stage], len([Stage]) -5)
and then try
running sum = CALCULATE(totals[total_count], FILTER(stages, stages[stage no] <= MAX(stages[stage no])))
amitchandak Thank you. Solution with stage no (index) works!