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.
Hey 🙂
in lot of my cards visual stay "Leer" (in german it means empty/zero) but I want to have "0" (Zero) insead "Leer". Do you have any ideas how can I change that?
Best regards
Nirvana Karolina
Solved! Go to Solution.
@Anonymous , add +0 to the measure
example
Sum(Table[value])+0
or
coalesce(Sum(Table[Value]), 0)
It works! Thank you very much! 🙂