Forum Discussion
askpbiuser
2 years agoHelper I
Highlight minimum value for each column in Matrix
Hi All, I am new to Power BI and working on highlighting the value which is lowest in a column. I have a matrix with Customer in Rows, column B in columns coming from Mat table and say Values in va...
amitchandak
2 years agoSuper User
askpbiuser , Create a measure like the below Assuming the value is measure and use that in conditional formatting using field value option
COlor =
var _tab = SUMMARIZE('Fact','Dim Customer'[Customer], 'Mat'[B],"@NET", [Value])
Return
Switch(True(),
[Value] = maxx(_tab, [@Net]), "Green",
[Value] = minx(_tab, [@Net]), "Red"
)
How to do conditional formatting by measure and apply it on pie?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/1682539
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pane-66e0afcb15f3