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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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