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!Get Fabric certified for FREE! Don't miss your chance! Learn more
Hello everyone
You could help me create a conditional format to shade the cell that contains the maximum and minimum value per row of the following array, as shown in the image below.
In red are the maximum values per fi
@Syndicate_Admin , Create measure like
Measure =
var _min = calculate(minx(values(Table[Column Field]), [Measure]), removefilters(Table[Column Field]))
var _max = calculate(maxx(values(Table[Column Field]), [Measure]), removefilters(Table[Column Field]))
return
Switch( True(),
[Measure] = _max, "Green",
[Measure] = _min, "Red",
"white"
)
Use this measure in conditional formatting using field value option
Learn Power BI Advance - PowerBI Abstract Thesis:
How to do conditional formatting by measure and apply it on pie?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/...
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pan...
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 |
|---|---|
| 68 | |
| 59 | |
| 48 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 107 | |
| 106 | |
| 39 | |
| 27 | |
| 27 |