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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Nash2Bos
Helper I
Helper I

How to unbold and bold certain rows

Hello i have a table that looks like ths

 

New York 1/3/20251/4/20251/5/20251/6/2025
 Plans5555
 Actuals4444
 Delta-1-1-1-1


how can I bold the Delta but keep New York/Plans/Actuals not bolded?

Thank you

1 ACCEPTED SOLUTION

hi @Nash2Bos 

 

go to Image size setting of the matrix visual and you can change the height and width 

 

kushanNa_0-1744324667305.png

 

View solution in original post

3 REPLIES 3
kushanNa
Super User
Super User

Hi @Nash2Bos 

 

you can do this using svg

 

Please follow the following steps

 

create following measure (fill up the measure values with your table name and column names )

 

Deltas SVG = 
VAR RowType = SELECTEDVALUE('YourTable'[RowType])
VAR Val = FORMAT(SELECTEDVALUE('YourTable'[Value]), "General Number")

VAR NormalText = 
    "data:image/svg+xml;utf8," & 
    "%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='20'%3E" &
    "%3Ctext x='0' y='15' font-family='Segoe UI'%3E" & Val & "%3C/text%3E" &
    "%3C/svg%3E"

VAR BoldText = 
    "data:image/svg+xml;utf8," & 
    "%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='20'%3E" &
    "%3Ctext x='0' y='15' font-family='Segoe UI' font-weight='bold'%3E" & Val & "%3C/text%3E" &
    "%3C/svg%3E"

RETURN
IF(RowType = "Delta", BoldText, NormalText)

 

Change the measure date category to image URL 

 

kushanNa_0-1744230240568.png

 

the the measure to the matrix table values field and and that should work 

 

 

kushanNa_1-1744230318735.png

 

 

 

 

Hey @kushanNa 

Thank you that does work but it messes up my heights and widths. Is there a way to set padding using that to keep the numbers tight? 

hi @Nash2Bos 

 

go to Image size setting of the matrix visual and you can change the height and width 

 

kushanNa_0-1744324667305.png

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.