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])))
Anonymous
6 years agoNot applicable
Hi,
it should be count as 2!
Thanks
az38
6 years agoCommunity Champion
Anonymous
try a measure
Measure = CALCULATE(SUM('Table'[Codici]),FILTER(ALL('Table'),'Table'[Year]<=MAX('Table'[Year])))- Anonymous6 years agoNot applicable
Am i missing something?
- Anonymous6 years agoNot applicable
This is the problem
in the measure ALL is a problem
I will try with allexcept
- Anonymous6 years agoNot applicable
Ok thanks it works with some correction in the filter, thanks!
- Anonymous2 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