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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a bar chart with a date on the x-axis and a $ amount as the value. When I make a year selection in a slicer, several of the values in the bar chart go to zero. Is it possible to remove the data labels in the bar chart when the value is 0?
Solved! Go to Solution.
Rewrite your measure to use a variable and an IF statement to blank out zeroes. Assuming your measure is something like:
Sales = SUM(SalesTable[Amount])
...you would rewrite it as:
Sales = VAR result = SUM(SalesTable[Amount]) RETURN IF(result = 0, BLANK(), result)
This will turn zeroes into blanks, which do not show up in data labels.
Hi @mjmar025,
Could you please mark the proper answer if it's convenient for you? That will be a help to others.
Best Regards!
Dale
Rewrite your measure to use a variable and an IF statement to blank out zeroes. Assuming your measure is something like:
Sales = SUM(SalesTable[Amount])
...you would rewrite it as:
Sales = VAR result = SUM(SalesTable[Amount]) RETURN IF(result = 0, BLANK(), result)
This will turn zeroes into blanks, which do not show up in data labels.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 101 | |
| 39 | |
| 29 | |
| 29 |