'PowerBI Hide 0 Values in the Page | PowerBI
Solution 1:[1]
To hide 0 values for a particular chart, you can just select the chart and set up a visual level filter:
Solution 2:[2]
Are you using a dax measure? then you can add the below to measure to display blank instead of zero.
MeasureName:= If([measure]=0,blank(),[measure])
Solution 3:[3]
You could use Edit Interactions and change from highlight to filter on the 2nd visual
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Foxan Ng |
Solution 2 | alejandro_hagan |
Solution 3 | Jordan Butler |