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.
hi
is there any way where i can hide the 0% values of calculated measure showing in the visual. i can use the visual filters but i am looking something if i can achieve using dax here .
Solved! Go to Solution.
@Anonymous -
You can do something like:
Your Measure = var a = <your calculation> return IF(a = 0, BLANK(), a)
Cheers!
Nathan
@Anonymous -
You can do something like:
Your Measure = var a = <your calculation> return IF(a = 0, BLANK(), a)
Cheers!
Nathan