Forum Discussion

Russ's avatar
Russ
Helper I
3 years ago
Solved

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.                  ...
  • parry2k's avatar
    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 )