Forum Discussion
Emma_
8 months agoHelper II
Row formatting in a table
Hello everyone, I'm looking for options to format specific rows within native tables in Power BI. Specifically, I want to know if there's a way to make the text and values of only one row bold and...
- 8 months ago
Use conditional formatting to change background color or font color for that one row (based on a flag/measure). For exampe:
Highlight Row = IF ( SELECTEDVALUE ( 'Table'[Category] ) = "Example", 1, 0 )Apply conditional formatting
Select your Table visual
In Values, open the dropdown for the column
Choose Conditional formatting → Background color (or Font color)
Format by: Rules
Based on field: Highlight Row
Rule:
If value is 1 → choose highlight color
If value is 0 → default color
This will apply the formatting only to that specific row, without any custom visuals.
Emma_
8 months agoHelper II
thank you