Hi,
Is it possible to restrict the visibility for only only one option on a slicer? Other options can be shown if there is at least one row data but one option should have more strict rules. Currently the slicer shows every option that has any data.
Example:
If "Company category 1" has less than 200 rows data, it should be hidden from the slicer.
SLICER
Company category 1
Company category 2
Company category 3
Company category 4
Solved! Go to Solution.
I found a solution for this by creating a measure that checks the count of Company category 1 and sets a dummy filling number of 201 for every other category. This way I can filter >= 200 for every option. Thanks a lot for the brainstorming @Daryl-Lynch-Bzy 🙂 Have a nice weekend!
@Anonymous you can create a more complete Measure that generates a results => 1 or 0. Then you filter for the Slicer can be measure equals 1.
I found a solution for this by creating a measure that checks the count of Company category 1 and sets a dummy filling number of 201 for every other category. This way I can filter >= 200 for every option. Thanks a lot for the brainstorming @Daryl-Lynch-Bzy 🙂 Have a nice weekend!
@Anonymous - Here is a crude example of filtering a slicer to show items in a Measure is greater the X. I think this is essentially what you are asking. Filter the list of Company Category where the Measure Count of Items is > 200.
Hi, this is clear 🙂 The question is how to set a condition only for one option, for example January in the Month Filter. What if I liked January to be visible when greater than 20 but for all the other months greater than 0. Do you know if this is possible?
Hi, @Anonymous - please remember that a Slicer is just visual, so you can apply filters using the Filter Pane. If you want a list please consider switchting the Slicer a table and add a measure. Then apply the Filter in the Filter Pane. Remove the measure, and then switch back to Slicer.
Thanks for your reply @Daryl-Lynch-Bzy !
I'm familiar with the filter pane but I wonder how it is possible to make the condition apply only one option. If the condition is that there must be more than 200 id numbers, it is affecting options that shouldn't be affected.