Forum Discussion
PowerBI pie chart exclude data points filter
Hello everyone,
using a pie chart the user can exclude certain data point by clicking right and confirm "exclude". Clicking right adds a filter to the visual of type "exclude x = "abc"".
Now I want to have a table which shows all the exlcuded entries. So far I was unable to achieve this. I tried to work with filters and use NOT IN, or work with a reference table and calculate the differences. No success.
I'd really appreciate your advice. Thanks.
4 Replies
- amitchandakSuper User
kravhowe , Try with a measure like this
countx(filter(all(Table), not(table[X] in values(table[X]))),table[X])- kravhoweFrequent Visitor
Thanks for your advice amitchandak
The DAX expression is correct, but still gives me an empty result.
Greetings
- AnonymousNot applicable
kravhowe
Please refer to the method:
https://www.skillslogic.com/blog/dashboards-data-warehousing/power-bi-how-to-show-rows-excluded-by-slicer
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.