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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Amymai
Frequent Visitor

Conditional Formatting for Matrix Table

Hi all,

 

I need to format the values as Highest Number become green and lowest become red for each of the Seniority and Job function. Formatting should work on each columns. hence highest number for each column should be green and lowest would be red.

 

Please help!!

 

Thank you!!

 

Here is data sample

 

Here is data sampleHere is data sampleHere is the matrix tableHere is the matrix table

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Amymai,

 

Please download the demo in the attachment and refer to desktop-conditional-table-formatting#color-formatting-by-field-value.

1. Upgrade the Desktop to the latest version.

2. Create a measure.

ColorRules =
VAR columnMax =
    CALCULATE (
        MAXX (
            SUMMARIZE (
                'Table1',
                Table1[op account name],
                Table1[seniority],
                Table1[op job function],
                "MK", COUNT ( Table1[MktCount] )
            ),
            [MK]
        ),
        ALL ( Table1[op account name] )
    )
VAR columnMin =
    CALCULATE (
        MINX (
            SUMMARIZE (
                'Table1',
                Table1[op account name],
                Table1[seniority],
                Table1[op job function],
                "MK", COUNT ( Table1[MktCount] )
            ),
            [MK]
        ),
        ALL ( Table1[op account name] )
    )
VAR currentValue =
    MAXX (
        SUMMARIZE (
            'Table1',
            Table1[op account name],
            Table1[seniority],
            Table1[op job function],
            "MK", COUNT ( Table1[MktCount] )
        ),
        [MK]
    )
RETURN
    SWITCH (
        TRUE (),
        currentValue = columnMax, "Green",
        currentValue = columnMin, "Red",
        "Blue"
    )

Conditional-Formatting-for-Matrix-Table

 

Best Regards,
Dale

Community Support Team _ Dale
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
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Amymai,

 

Please download the demo in the attachment and refer to desktop-conditional-table-formatting#color-formatting-by-field-value.

1. Upgrade the Desktop to the latest version.

2. Create a measure.

ColorRules =
VAR columnMax =
    CALCULATE (
        MAXX (
            SUMMARIZE (
                'Table1',
                Table1[op account name],
                Table1[seniority],
                Table1[op job function],
                "MK", COUNT ( Table1[MktCount] )
            ),
            [MK]
        ),
        ALL ( Table1[op account name] )
    )
VAR columnMin =
    CALCULATE (
        MINX (
            SUMMARIZE (
                'Table1',
                Table1[op account name],
                Table1[seniority],
                Table1[op job function],
                "MK", COUNT ( Table1[MktCount] )
            ),
            [MK]
        ),
        ALL ( Table1[op account name] )
    )
VAR currentValue =
    MAXX (
        SUMMARIZE (
            'Table1',
            Table1[op account name],
            Table1[seniority],
            Table1[op job function],
            "MK", COUNT ( Table1[MktCount] )
        ),
        [MK]
    )
RETURN
    SWITCH (
        TRUE (),
        currentValue = columnMax, "Green",
        currentValue = columnMin, "Red",
        "Blue"
    )

Conditional-Formatting-for-Matrix-Table

 

Best Regards,
Dale

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

Thank you so much!!!

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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.

Top Solution Authors