Forum Discussion
Russ
3 years agoHelper I
Remove Blank Rows From a Running Total Calculation
I have the following Powerbi table visual, for which I am trying to add a running total for MeasureA using the Sortindex and not Reportdate to filter earlier results. ...
- 3 years ago
Russ one way is this:
RunTotalMeasureA = VAR MeasureValue = [MeasureA] VAR CurrentIndex = SELECTEDVALUE ( Ledger[SortIndex] ) VAR FilteredTable = FILTER ( ALL ( Ledger ), Ledger[SortIndex] <= CurrentIndex ) RETURN CALCULATE ( [MeasureA], FilteredTable ) * DIVIDE ( MeasureValue, MeasureValue )
parry2k
3 years agoSuper User
Russ one way is this:
RunTotalMeasureA =
VAR MeasureValue = [MeasureA]
VAR CurrentIndex =
SELECTEDVALUE ( Ledger[SortIndex] )
VAR FilteredTable =
FILTER ( ALL ( Ledger ), Ledger[SortIndex] <= CurrentIndex )
RETURN
CALCULATE ( [MeasureA], FilteredTable ) * DIVIDE ( MeasureValue, MeasureValue ) - Russ3 years agoHelper I
Thanks parry2k. Works perfect. Clever solution!!