This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello i have a table that looks like ths
| New York | 1/3/2025 | 1/4/2025 | 1/5/2025 | 1/6/2025 | |
| Plans | 5 | 5 | 5 | 5 | |
| Actuals | 4 | 4 | 4 | 4 | |
| Delta | -1 | -1 | -1 | -1 |
how can I bold the Delta but keep New York/Plans/Actuals not bolded?
Thank you
Solved! Go to Solution.
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
the the measure to the matrix table values field and and that should work
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?
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 36 | |
| 29 | |
| 22 | |
| 21 |