I have data structured like this
Date, Group, Value
1/1/2020, A, 10
2/1/2020, A, 5
3/1/2020, A, 7
1/1/2020, B, 1
2/1/2020, B, 3
3/1/2020, B, 7
1/1/2020, C, 1
2/1/2020, C, 3
3/1/2020, C, 7
With ~20 Groups. I want to create Pie/Tree chart, to show f.e. Top 5 Values and the rest as OTHER. It's pretty simple to do once, but what if I have slicer that filters the graph by Years or Months, accuired from Dates Table connected to Date column? So when I check only 2020, it would show Top N + Others for 2020 only, and not all data? Only TopN in graph filters isn't enough, since it sums values on graph to 100%, and I want to see what's the real percentage in terms of all Groups.