Forum Discussion
Unselect multiple raws when only 1 in checked
Do any of these approaches work for you?
https://community.powerbi.com/t5/Desktop/Use-slicer-to-filter-and-exclude-from-results/m-p/267110
https://community.powerbi.com/t5/Quick-Measures-Gallery/Inverse-Aggregator/m-p/342266
https://www.antmanbi.com/post/show-items-not-selected-in-a-slicer
Thanks for your solution.
I already tried a lot for the exclusion slicer. The issue thats stay is that the measure is not "linked" to the data and cannot be used in other visuals with the same result, hasException is calculated again depending on the way the data is aggregated.
I think my issue can be formulated as so : how can I link the result of a measure in a visual (itself depending on the slicer result - this part is ok I think) to the data so it stays as an information?
How can hasException be calculated at some point and be linked to the ID for all the visual, so I can filter on it the same way on all the visuals of the report?
Thanks a lot
- AlexisOlson4 years ago
Super User
That is indeed a more difficult question than doing it for a particular measure.
I've not tried this, but maybe you could do it by using a calculation group page filter with a calculation item like:
CALCULATE ( SELECTEDMEASURE (), EXCEPT ( VALUES ( Fact[ID] ), VALUES ( Exclude[ID] ) ) )