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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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