Forum Discussion
Conditional formatting
- 2 years ago
Hi Sam
WOW!! this is perfect and worked!!
one more question. This is what the table looks like now.. is there a way to add the same color to the column with the words? on the Course, part of Term and Modality
Hi dbldee5 you could do this with a SWITCH and ISFILTERED:
colour measure =
Switch(
true()
,isFiltered(table[Term]) && [Percent] > X,"Green"
,isFiltered(table[Modality]) && [Percent] > X ,"Yellow"
,isFiltered(table[Course]) && [Percent] > X ,"Red")
You test the inner most row first and then work outwards.
Hi Sam
WOW!! this is perfect and worked!!
one more question. This is what the table looks like now.. is there a way to add the same color to the column with the words? on the Course, part of Term and Modality
- SamWiseOwl2 years ago
Super User
I don't believe so sadly 😞
- dbldee52 years agoFrequent Visitor
Hi Sam,
I accepted this as a solution. Do you know if I will be able to color the first column with the labels the same way?
Thanks