Forum Discussion
Conditional formatting for Date fields in PowerBI
- 5 years ago
Cshenoy , Create a color measure like
if( max(Table[Date1]) > max(Table[Date2]) , "green", "red" )
And use that in conditional formatting with field value option
For steps, if needed
https://www.youtube.com/watch?v=RqBb5eBf_I4
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
Cshenoy , Create a color measure like
if( max(Table[Date1]) > max(Table[Date2]) , "green", "red" )
And use that in conditional formatting with field value option
For steps, if needed
https://www.youtube.com/watch?v=RqBb5eBf_I4
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