'PowerBI Hide 0 Values in the Page | PowerBI

Could someone advice how could be hide 0 values from all chars on the PowerBI page? For example when I clicking on chart A and want to filter just specific Axis, report filtering data on chart B, but also shows me lines with 0 values. How could be these lines deleted?enter image description here



Solution 1:[1]

To hide 0 values for a particular chart, you can just select the chart and set up a visual level filter:

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