Forum Discussion
Sander1401
Helper II
2 years agoRunningSum in DAX, multiple bookingyears
Hi All, I am struggling wioth RunningSum in DAX. I want to conmstruct a linegraph with the RunningSum/RunningTotal for arrivalyear 2024. As you can see in the excelfile I have multiple bookingy...
- 2 years ago
Hello Sander1401 ,
Create running total measure as follows:Running Total = CALCULATE(SUM('Table'[Sale]), ALLSELECTED('Table'), 'Table'[Date booking] <=MAX('Table'[Date booking]))Please refer attachment for details.
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Sander1401
Helper II
2 years agoYou are a live saver!