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 )
Russ
3 years agoHelper I
In Dax Studio this code produces a table removing the Blanks, but Im not sure how to evaluate the running total from here.
EVALUATE
Filter(
SUMMARIZE(
Ledger,
Ledger[SortIndex],
Ledger[AccReportDate],
"MesA",
[MeasureA]
),
ISBLANK([MesA])=False()
)