Forum Discussion
YPBI
2 years agoFrequent Visitor
Running Total % on Measure
Hi - I want to create running total column based on the values in the % Scaled Scores column. The probem is that the said column is a measure, so solutions that use SUM won't work. What would the DAX...
parry2k
2 years agoSuper User
YPBI you can try something like this:
RT Measure =
CALCUALTE (
[Existing Measure],
FILTER (
ALL ( 'Grouping Table' ),
'Grouping Table'[Id] <= MAX ( 'Grouping Table'[Id] )
)
)- littlemojopuppy2 years agoCommunity Champion
- YPBI2 years agoFrequent Visitor
That doesn't seem to get me the desired result.
RT Measure = CALCULATE( [% Scaled Scores], FILTER ( ALL ( TestData[Sort SS Grouping]), 'TestData'[Sort SS Grouping] <= MAX ( TestData[Sort SS Grouping])I tried swapping the Sort SS Grouping with Scaled Scores Grouping and got this...first two rows sum correctly