Forum Discussion
Anonymous
5 years agoNot applicable
Formatting Background Color Conditional - Blank, Null, Empty, Zero?
Hello, I am try to conditionally format the background of my visuals based off of a measure then a scoring level of 0 (red), 5 (yellow) or 10 (green). I am having troubles conditionally formatting th...
- 5 years ago
Anonymous , with Range I doubt, but with Measure color and use that in conditional formatting with field value option
Switch( true() ,
isblank([measure]) , "red" ,
[measure] =0 , "Yellow" ,
[measure] <10 , "Orange",
"green"
)
refer
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
https://www.youtube.com/watch?v=RqBb5eBf_I4
amitchandak
5 years agoSuper User
Anonymous , Create a measure
New measure = [measure] +0
And use this measure in coditional formatting
I think in that case if should pickup 0 .