Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I wanted to highlight one specific row in a matrix by "bold it or put in a color, something so it stands out".
Do we have any possiblity on this?
please assist with the steps if so.
Example:
| Value | |||
Row | Amount 1 | Amount 2 | Amount 3 | Amount 4 |
A | 600 | 700 | 400 | 199 |
B | 479 | 3257 | 345 | 122 |
C | 1079 | 3957 | 745 | 321 |
I wanted to highligth only Row C in this case.
Note: All Rows A,B,C are being calculated using DAX with Case statement
@pavithrarajan
There is no option unfortunately to highlight the whole row atonce but you will have to apply by each Measure (Amount1, Amount2 . . . ) using a Conditional Formatting measure:
Color_CF =
IF ( SELECTEDVALUE ( table[Row] ) = "C", "blue" )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.