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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Matrix Visual, Conditional Formatting, Row Values

I'm looking to do conditional formatting (colour coding) based on the values in each row in a matrix.

Is there a way to do that? See picture. Every row needs it's own conditional formatting based on the higest and lowest value in each row. This to see the difference between columns 1,2 and 3 colour coded with one look.

Thank you for help

 

Capture1.PNG

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can do like this.

(Please refer to my .pbix file.)

1. Sum columns group by another column.

eee1.PNG

2. Unpivot the columns

eee3.PNG

 

3. Create measures.

Min_value = 
CALCULATE(
    MIN(Sales[Value]),
    ALLEXCEPT(
        Sales,
        Sales[Month]
    )
)
Max_value = 
CALCULATE(
    MAX(Sales[Value]),
    ALLEXCEPT( 
        Sales,
        Sales[Month]
    )
)
Color_code = 
IF(
    SELECTEDVALUE(Sales[Value]) = [Max_value],
    "Blue",
    IF(
        SELECTEDVALUE(Sales[Value]) = [Min_value],
        "Red"
    )
)

eee4.PNG

 

Best regards,
Lionel Chen

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

3 REPLIES 3
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can do like this.

(Please refer to my .pbix file.)

1. Sum columns group by another column.

eee1.PNG

2. Unpivot the columns

eee3.PNG

 

3. Create measures.

Min_value = 
CALCULATE(
    MIN(Sales[Value]),
    ALLEXCEPT(
        Sales,
        Sales[Month]
    )
)
Max_value = 
CALCULATE(
    MAX(Sales[Value]),
    ALLEXCEPT( 
        Sales,
        Sales[Month]
    )
)
Color_code = 
IF(
    SELECTEDVALUE(Sales[Value]) = [Max_value],
    "Blue",
    IF(
        SELECTEDVALUE(Sales[Value]) = [Min_value],
        "Red"
    )
)

eee4.PNG

 

Best regards,
Lionel Chen

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

 

parry2k
Super User
Super User

@Anonymous you cannot conditionally format row but you can make a measure that returns the color code based on the business logic and then apply the same measure for each column in the matrix using conditional formatting and choosing field value option.

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

Hey!

Thanks for the answer. Not sure that helps in my case.

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.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.