Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
If I can get any help with this, it would be awesome. I have a table that has 3 text columns in the rows:
Course
Modality
Part of term
I want to add a conditional format of Red to the Course Row if it is a certain percent filled
I want to add a conditional format of Yellow to the Modality row if it is a certain percent filled
I want to add a conditional format of Green to the Part of Term row if it is a certain percent filled
Solved! Go to Solution.
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.
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
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
I don't believe so sadly 😞
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
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
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 38 | |
| 34 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |