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
Anonymous
Not applicable

Bold certain rows header in a Matrix

Hello Community,

Now I have a matrix, where I want to bold only "First value", "Second value" without changing the font of the other row headers.

is it possible?

Thank you.

PBHaj_SL_0-1704278987649.png

2 ACCEPTED SOLUTIONS
zenisekd
Super User
Super User

I am not sure if you can bold certain rows, what you could however do is change the "Style presents"  to e.g. Minimal and then use conditional formatting for the rows, so that when value = entry, then use centrain background colour so it would stand out.

View solution in original post

Anonymous
Not applicable

Hi @Anonymous 

 

Based on the information you provided, the following is the case description: You need to bold certain row headings in the matrix.

 

I am not sure if your data has a hierarchical structure or how your matrix was created, here are my tests:

 

Data has a hierarchical structure:

 

My sample:

 

vxuxinyimsft_0-1704338968623.png

 

If the data has a hierarchical structure, then the row headings are automatically bolded:

 

vxuxinyimsft_1-1704339077418.png

 

Data does not have a hierarchical structure:

 

My sample:

 

vxuxinyimsft_2-1704339127641.png

 

The effect of bolding the line headings is not possible in this case, here is my suggestion:

 

1. Create a measure as follows:

Measure = 
    switch(
        TRUE(),
        SELECTEDVALUE('Table'[entry]) = "First value", "orange",
        SELECTEDVALUE('Table'[entry]) = "Second value", "orange"
)

 

2. Operate as shown in the following screenshot:

 

vxuxinyimsft_3-1704339239849.png

 

vxuxinyimsft_4-1704339271194.png

 

vxuxinyimsft_5-1704339294985.png

For more information about the conditional format, you can refer to the following link: https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-table-formatting 

 

If I've misunderstood you, please provide detailed information. We can better understand the problem and help you. Show it as a screenshot or excel. Please remove any sensitive data in advance.

 

Best Regards,
Community Support Team _Yuliax

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous 

 

Based on the information you provided, the following is the case description: You need to bold certain row headings in the matrix.

 

I am not sure if your data has a hierarchical structure or how your matrix was created, here are my tests:

 

Data has a hierarchical structure:

 

My sample:

 

vxuxinyimsft_0-1704338968623.png

 

If the data has a hierarchical structure, then the row headings are automatically bolded:

 

vxuxinyimsft_1-1704339077418.png

 

Data does not have a hierarchical structure:

 

My sample:

 

vxuxinyimsft_2-1704339127641.png

 

The effect of bolding the line headings is not possible in this case, here is my suggestion:

 

1. Create a measure as follows:

Measure = 
    switch(
        TRUE(),
        SELECTEDVALUE('Table'[entry]) = "First value", "orange",
        SELECTEDVALUE('Table'[entry]) = "Second value", "orange"
)

 

2. Operate as shown in the following screenshot:

 

vxuxinyimsft_3-1704339239849.png

 

vxuxinyimsft_4-1704339271194.png

 

vxuxinyimsft_5-1704339294985.png

For more information about the conditional format, you can refer to the following link: https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-table-formatting 

 

If I've misunderstood you, please provide detailed information. We can better understand the problem and help you. Show it as a screenshot or excel. Please remove any sensitive data in advance.

 

Best Regards,
Community Support Team _Yuliax

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

zenisekd
Super User
Super User

I am not sure if you can bold certain rows, what you could however do is change the "Style presents"  to e.g. Minimal and then use conditional formatting for the rows, so that when value = entry, then use centrain background colour so it would stand out.

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