Hello everyone,
I would like to hide a clustered column chart, if too many categories are selected from slicer.
If there are for example more than 4 categories selected, the visual will be too full and one cannot compare the values.
Is there an option to hide the visual, if there are more than 4 categories selected?
One option is to put a card in front of the picture, but then, there are no interactions with this visual possible.
I only found solutions, to hide visuals, if exact one category is chosen.
Thank you in advance!
Solved! Go to Solution.
@Bahneby , Try to create a measure like
if(calculate(distinctcount(category[category]), allselected()) >4, Blank(), [measure])
@Bahneby , Try to create a measure like
if(calculate(distinctcount(category[category]), allselected()) >4, Blank(), [measure])
User | Count |
---|---|
139 | |
84 | |
62 | |
60 | |
57 |
User | Count |
---|---|
211 | |
108 | |
89 | |
76 | |
72 |