Forum Discussion
CarlsBerg999
5 years agoHelper V
Hide zeros from Matrix
Hi, I have a Matrix table in PBI, which is demonstrated below on Excel. I have conditional formatting: "If value is 0 then font is white". This works fine for "Other Creditors, Advances Received ...
- 5 years ago
CarlsBerg999 , I see white only for blank, not for 0. Can share condition use.
Or try a measure like
Switch(true() ,
[meausre] = 0, "white",
"black"
)
use this in conditional formatting with field value option
amitchandak
5 years agoSuper User
CarlsBerg999 , I see white only for blank, not for 0. Can share condition use.
Or try a measure like
Switch(true() ,
[meausre] = 0, "white",
"black"
)
use this in conditional formatting with field value option