Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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])