Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I want to color each field with the biggest value green within each row. How can I do this? Without doing it manuelly. I think it has something to do with Conditional formatting?
Solved! Go to Solution.
Hi @jtj
@Uzi2019 @KeyurPatel14 Thank you very much for your prompt reply. Please allow me to share other methods here.
If your source data is in the following format, perform the unpivot operation.
Select Transform data to enter Power Query.
You'll get:
Create a measure.
Measure =
VAR RowMax = CALCULATE(MAX('Table'[Value]), FILTER(ALL('Table'), 'Table'[Category] = MAX('Table'[Category])))
RETURN
IF(SELECTEDVALUE('Table'[Value]) = RowMax, "GREEN", "WRITE")
Create a matrix.
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jtj
@Uzi2019 @KeyurPatel14 Thank you very much for your prompt reply. Please allow me to share other methods here.
If your source data is in the following format, perform the unpivot operation.
Select Transform data to enter Power Query.
You'll get:
Create a measure.
Measure =
VAR RowMax = CALCULATE(MAX('Table'[Value]), FILTER(ALL('Table'), 'Table'[Category] = MAX('Table'[Category])))
RETURN
IF(SELECTEDVALUE('Table'[Value]) = RowMax, "GREEN", "WRITE")
Create a matrix.
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It seems like the awnser is to make a matrix instead of a table.
hi @jtj
Please check the below video for better understanding.
https://www.youtube.com/watch?v=m0h3Ghl6mgY
https://www.youtube.com/watch?v=wTRrskQzAHk
https://www.youtube.com/watch?v=FSTiPm5tY8A
I hope above videos would help you to understand the conditional formatting setting for Matrix visual.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.