Forum Discussion
Line Chart Comparing Running Total
- 3 years ago
shaebert , You can get cumulative measure with help from date table
example
Cumm = CALCULATE(SUM(Table[Value]),filter(all('Date'),'Date'[date] <=max('Date'[date])))
or
Cumm = CALCULATE(SUM(Table[Value]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))
The information you have provided is not making the problem clear to me. Can you please explain with an example.
Appreciate your Kudos.
shaebert , You can get cumulative measure with help from date table
example
Cumm = CALCULATE(SUM(Table[Value]),filter(all('Date'),'Date'[date] <=max('Date'[date])))
or
Cumm = CALCULATE(SUM(Table[Value]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))
The information you have provided is not making the problem clear to me. Can you please explain with an example.
Appreciate your Kudos.
Below is an example of one of the two lines based on the table of data above. Hope this helps clarify what I meant.