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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I am trying to keep my scatter, fever chart empty until something is selected on the left table. I tried using the suggestion found in the forum, to create the measure:
SlicerCheck = =if(calculate(distinctcount([SlicerColumn]),allselected([SlicerColumn]))=1,"Y","N")
but it is not working for me, I add this measure to the visual filter and set to Y and still see all the scatters in the chart. maybe I am puting the wrong [slicer Column]?? not sure..
your help is appreciated!
Solved! Go to Solution.
hi,@Allav
You can try to use ISFILTERED to add a measure like this:
new SlicerCheck = IF(ISFILTERED(VehicleTrend[ReportDate])=BLANK() ,"Please Select a Report Date", BLANK())
and then set visual level filter:
Here is demo , please try it
Best Regards,
Lin
hi,@Allav
You can try to use ISFILTERED to add a measure like this:
new SlicerCheck = IF(ISFILTERED(VehicleTrend[ReportDate])=BLANK() ,"Please Select a Report Date", BLANK())
and then set visual level filter:
Here is demo , please try it
Best Regards,
Lin
Thanks so much, it worked!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!