I have a running sum measure, what I need is when my axis is filtered running sum should not recalculate to a 100% but instead show me running sum until that weight - only axis should be filtered and not the running sum.
In the attached file, on filtering any weights - the percentages should always be constant
Hi @satichun. I think a way forward is to get the values you’re looking for into a table first, then add them to your combo chart. Although not a solution, here’s a start that hopefully provides some insights. Greg eDNA Forum - Running Total with Filters.pbix (23.8 KB)
Running volume Ant =
VAR MaxSelectedWeight =
MAX ( 'Table'[Weight] )
VAR Numerator =
CALCULATE ( [Total Volume], 'Table'[Weight] <= MaxSelectedWeight )
VAR Denominator =
CALCULATE ( [Total Volume], ALL ( 'Table' ) )
VAR Result =
DIVIDE ( Numerator, Denominator )
RETURN
Result