Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
rbalza
Helper III
Helper III

Hide Zero Values in Matrix

Hi Everyone,

 

How to hide column with zero values? Seen couple of forums here and found nothing that works in my case. I even filter on page visual.

 

My measure on total is:

Totals = [Op Bal Interim Transactions] +
CALCULATE(
    [Journal Lines Total] ,
    FILTER(
        ALLSELECTED( Dates),
        Dates[Date] <= MAX( Dates[Date])
    )
)

Appreciated your help on this.

 

 

01.PNG02.PNG

2 REPLIES 2
amitchandak
Super User
Super User

@rbalza , Try like

Totals =
var _1 = [Op Bal Interim Transactions] +
CALCULATE(
[Journal Lines Total] ,
FILTER(
ALLSELECTED( Dates),
Dates[Date] <= MAX( Dates[Date])
)
)

return if(_1= 0, blank(), _1)

not working 😞 Appreciate your help.

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

Top Solution Authors