Forum Discussion
Anonymous
6 years agoNot applicable
Sum previous year
Hi, that's my graph: With the blue line (that's a simply distinct count) i need to sum the previous year to the current year. So, it will become: 2014: 819 2015: 2412 + (819) 201...
- 6 years ago
Anonymous
try a measure
Measure = CALCULATE(SUM('Table'[Codici]),FILTER(ALL('Table'),'Table'[Year]<=MAX('Table'[Year])))
az38
6 years agoCommunity Champion
Anonymous
try a measure
Measure = CALCULATE(SUM('Table'[Codici]),FILTER(ALL('Table'),'Table'[Year]<=MAX('Table'[Year])))Anonymous
2 years agoNot applicable
I got the desired values with the above solution . Now when i am putting legends the graph is showing same values
Please if you have any solution on this