This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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...
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 65 | |
| 35 | |
| 32 | |
| 25 | |
| 23 |