Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
pavithrarajan
Frequent Visitor

highlight one specific row in a matrix

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 

 

1 REPLY 1
Fowmy
Super User
Super User

@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" )

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors