Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi everyone!
I'm a little stuck on this issue and I'm not sure of a way around it. I need to color code the rows in a matrix to show what IDs are relevant to each other. For example IDs 10, 20 and 30 are all relevant to each other and need to be the same color while IDs 5, 15 and 25 are relevant to each other and need to be the same color but a different color from IDs 10, 20 and 30. There are more than just these two but I just wanted to show an example. Thanks for the help!
| 10 | RED |
| 20 | RED |
| 5 | BLUE |
| 30 | RED |
| 15 | BLUE |
| 25 | BLUE |
Solved! Go to Solution.
You can make a simple measure like this (using your sample data table). Any measure that returns a color in text format will work.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@Anonymous , Create a color measure like
color Measure =
Switch(True() ,
max(Table[ID]) in {10,20,30} ,"Red",
max(Table[ID]) in {5,15,25} ,"Blue",
"White"
)
And use that in conditional formatting using the "Field Value" option
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
Hi @Anonymous
Please check this sample PBIX file
I assume you don't have a column with the color names in it, just a column of numbers? In my example I've added a few extra numbers so you can see how it works. You haven't specified what the relationship between ID's is so can'tprogram that in at this point so I'm assuming all numbers ending in 0 are related, all numbers ending in 5 are related - that's what is in your example.
You can create a measure to set the row color based on the value of the ID
RowColor = SWITCH(
TRUE(),
MOD(MIN('Table'[ID]),10) = 0, "red",
MOD(MIN('Table'[ID]),10) = 3, "green",
MOD(MIN('Table'[ID]),10) = 5, "blue",
"black"
)
or the text color
TextColor = SWITCH(
TRUE(),
MOD(MIN('Table'[ID]),10) = 0, "red",
MOD(MIN('Table'[ID]),10) = 3, "green",
MOD(MIN('Table'[ID]),10) = 5, "blue",
"black"
)
In the Conditional Formatting for the ID set the Background or Font color, set it to Format By the Field Value (the measures) RowColor or TextColor.
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Hi @Anonymous
Please check this sample PBIX file
I assume you don't have a column with the color names in it, just a column of numbers? In my example I've added a few extra numbers so you can see how it works. You haven't specified what the relationship between ID's is so can'tprogram that in at this point so I'm assuming all numbers ending in 0 are related, all numbers ending in 5 are related - that's what is in your example.
You can create a measure to set the row color based on the value of the ID
RowColor = SWITCH(
TRUE(),
MOD(MIN('Table'[ID]),10) = 0, "red",
MOD(MIN('Table'[ID]),10) = 3, "green",
MOD(MIN('Table'[ID]),10) = 5, "blue",
"black"
)
or the text color
TextColor = SWITCH(
TRUE(),
MOD(MIN('Table'[ID]),10) = 0, "red",
MOD(MIN('Table'[ID]),10) = 3, "green",
MOD(MIN('Table'[ID]),10) = 5, "blue",
"black"
)
In the Conditional Formatting for the ID set the Background or Font color, set it to Format By the Field Value (the measures) RowColor or TextColor.
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
@Anonymous , Create a color measure like
color Measure =
Switch(True() ,
max(Table[ID]) in {10,20,30} ,"Red",
max(Table[ID]) in {5,15,25} ,"Blue",
"White"
)
And use that in conditional formatting using the "Field Value" option
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
Hi @amitchandak !
Your solution works perfectly for me but is there a way to have the rows show just the color and not show the words of that color? Thanks for the help!
You can make a simple measure like this (using your sample data table). Any measure that returns a color in text format will work.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 67 | |
| 44 | |
| 34 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 137 | |
| 118 | |
| 58 | |
| 40 | |
| 35 |