Forum Discussion
Anonymous
3 years agoNot applicable
Filter All Loses Slicer Capability
I am displaying a table below on my report: The rows are measures calculated from Table T1. The measure used to calculate the bottom row is: CALCULATE(sum(T1[Count]), FILTER( ...
- Anonymous3 years ago
The answer is to use ALLEXCEPT in place of ALL. Here was the final query that I used.
CALCULATE(sum(T1[Count]), FILTER(ALLEXCEPT(T1,T1[userid],T1[username]),T1[dateend] >= SELECTEDVALUE('Date'[WeekEndDate]) - 6&& T1[dateend] <= SELECTEDVALUE('Date'[WeekEndDate])))
Anonymous
3 years agoNot applicable
The answer is to use ALLEXCEPT in place of ALL. Here was the final query that I used.
CALCULATE(sum(T1[Count]), FILTER(
ALLEXCEPT(T1,T1[userid],T1[username]),T1[dateend] >= SELECTEDVALUE('Date'[WeekEndDate]) - 6
&& T1[dateend] <= SELECTEDVALUE('Date'[WeekEndDate]))
)