Forum Discussion
Filter - Urgent Problem
Hello Power BI enthusiasts,
I have an urgent question for you guys. I've two filters, Percentage (Table %, Column%), and Footprint (Size, Index).
The client wants the Percentage filter to be before the Footprint filter. The pic of the dashboard is below:
The problem is that combination of Table % - Index- has no data to show in the dashboard.
What DAX measure or setting should I use in Power BI so that when I select Table % in Percentage the footprint filter automatically changes to Size, and doesn't show the following blank columns view?
This is an URGENT REQUEST. Please help!!
Hi , Anonymous
I watched your video, the slicer manually selects the current filtering context, and since the "Table %" in your [Percentage] does not have a corresponding "index" in the [Footprint], you will not see "Table %" after you select "index". If you want to see the "Table %" option, you can toggle the "index" option for [Footprint].
Because the row headers in your visual are from another table and vary based on the current filtering context, we can't force modify the row headers under the "index" filtering context.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
8 Replies
- v-yueyunzh-msftCommunity Support
Hi, Anonymous
Slicers are filtered based on user selection, and selection results cannot be modified by methods such as measures, but only by manually clearing filtering:
If you want to ignore the filter of the [Footprint] slicer when selecting "Table %" in [Percentage], you can use IF(SELECTRDVALUE('Table'[Percentage])="Table %")to determine whether to select or not, and then use ALL ('Table'[Footprint]) to clear the filter for that column.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
- AnonymousNot applicable
Thanks for the suggestion, can you please help me with the implementation of this on this demo pbix?
https://drive.google.com/file/d/1c1g-iR4ZE_hc-zogFF2e52i6vXl0tEYE/view?usp=sharing
- AnonymousNot applicable
Also, v-yueyunzh-msft Can this measure work when Single Selection is on the filter?
- v-yueyunzh-msftCommunity Support
Hi , Anonymous
I download your .pbix file , you can open the interactions between two slice,so you will not appear the blank data.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly