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.
My scenario is this: I have a PowerBI dashboard that consists of 5 charts, each correlating to a different category that is on a client survey we distribute. Clients have the choice to not fill out the survey, so some months we get very few completed surveys. Would there be a way in PowerBI to blur all of the charts or the entire page if there were to be too few surveys completed in a month? So let's say the distinct count of survey IDs is less than 10, could I blur all of the charts on the dashboard, but if over 10 completed make them all visibile?
Thank you in advance!
@Anonymous , You can create a measure
m1= countrows(allselected(Table))
You can now use this in visual level filter of all visual and use m1 >5,means all visual not show unless count > 5