Forum Discussion
Dual slicer stacked cumulative sum area plot
- 3 years ago
I solved the problem. I just wanted to report back for future users' sake who rely on these kinds of posts as I do.
The root cause is the misunderstanding of the limits of calculated columns. The DAX expressions, despite giving the impression of a dynamic aggregation similar to measures, do not appear to support sub-group aggregation with the slicers as I thought. Measures are required to evaluate in this way.
Creating the following measure allowed implementing the dynamic sub-group aggregation with slicing as desired.
sum_outs =CALCULATE(SUM('Facts'[Number Completed]),FILTER(ALL('Date'), 'Date'[Date] <= MAX('Date'[Date])))
I solved the problem. I just wanted to report back for future users' sake who rely on these kinds of posts as I do.
The root cause is the misunderstanding of the limits of calculated columns. The DAX expressions, despite giving the impression of a dynamic aggregation similar to measures, do not appear to support sub-group aggregation with the slicers as I thought. Measures are required to evaluate in this way.
Creating the following measure allowed implementing the dynamic sub-group aggregation with slicing as desired.