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.
Hello,
I would like to avoid displaying zero values in column "ImportoEURO" in this table. I would like it to be blank.
Thank you
Solved! Go to Solution.
Hi
You can use below measure expression to change zero into blank.
Measure = IF(Sum(Sales)=0,Blank(),Sum(Sales))
Thanks
Hari
Hi @Gian666
You can create a new column to replace this column
Best Regards,
Community Support Team _Isabella
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Gian666
You can create a new column to replace this column
Best Regards,
Community Support Team _Isabella
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi
You can use below measure expression to change zero into blank.
Measure = IF(Sum(Sales)=0,Blank(),Sum(Sales))
Thanks
Hari
Thank's
Hi Gian,
Please mark this as answer if this resolves your issues.
Thanks
Hari