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] )
)
)littlemojopuppy
2 years agoCommunity Champion