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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 sample
Here is the matrix table
Solved! Go to Solution.
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" )
Best Regards,
Dale
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" )
Best Regards,
Dale
Thank you so much!!!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 91 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |