Forum Discussion
Slicer setting to deselect all
- 2 years ago
Hi Rejaul84
You can modify this functionality with Dax.The slicer's values should be in a separate table:
Then you can create a measure that tests if there is some filter applied on a slicer's table :
Selection test = if(ISFILTERED('Slicer'[Category]),1,0)This measure can be used to filter other visualsYou also can create a dynamic title based on this measure to guide the user:
Title = if ([Selection test]=1, "Category by value", "Please select category")Pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
- 2 years ago
Hi Ritaf1983
Thanks for the help. I was able to do this but not exactly the way you have shown but I have taken the dynamic title tip, as this is good from a user perspective.
I ended up doing the following;
Add new measure
FilterCheck = INT(ISFILTERED('TableA'[Category]))
This worked for me without the need to have another table for the slicer.
Hi Ritaf1983
Thanks for the help. I was able to do this but not exactly the way you have shown but I have taken the dynamic title tip, as this is good from a user perspective.
I ended up doing the following;
Add new measure
FilterCheck = INT(ISFILTERED('TableA'[Category]))
This worked for me without the need to have another table for the slicer.