Forum Discussion
How to conditionally format a gauge visual
- 5 years ago
Anonymous , You have conditional formatting in gauge visual. You can create a color measure and use that with field value option
Switch (True(),
selectedvalues(Table[Organization]) ="M1", [Value] <.6, "Red",
selectedvalues(Table[Organization]) ="M2", [Value] <.8, "Red",
// Add others
)
refer for steps
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-numbers-in-the-column
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
Anonymous , You have conditional formatting in gauge visual. You can create a color measure and use that with field value option
Switch (True(),
selectedvalues(Table[Organization]) ="M1", [Value] <.6, "Red",
selectedvalues(Table[Organization]) ="M2", [Value] <.8, "Red",
// Add others
)
refer for steps
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-numbers-in-the-column
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values