Forum Discussion

Emma_'s avatar
Emma_
Helper II
8 months ago
Solved

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...
  • cengizhanarslan's avatar
    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

    1. Select your Table visual

    2. In Values, open the dropdown for the column

    3. Choose Conditional formatting → Background color (or Font color)

    4. Format by: Rules

    5. Based on field: Highlight Row

    6. 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.