Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I am trying to do a conditional formatting, but it looks like because of the summarization, it only formats the first value. See condition below. How can I fix that?
Hi @omaffud
Download PBIX file with the example below
You need to create a measure that determines the color, then apply that measure in the Conditional Formatting.
Heres an example measure using Hex color codes, change these to whatever you want. You can look up Hex color codes online, here's one place HTML Color Picker (w3schools.com)
CF =
VAR _status = SELECTEDVALUE('DataTable'[Item Status])
RETURN
SWITCH( TRUE(),
_status = "Cancelled", "#f00",
_status = "Re-Validated", "#ff0",
_status = "PL Rejected", "#f0f",
"#0f0"
)
Then create Conditional Formatting that uses this measure to apply color to the Status column
You can also use well known color names rather than Hex color codes. See section 4.3 here CSS Color Module Level 3 (w3.org)
Further Reading: see the section 'Color based on a calculation' Apply conditional table formatting in Power BI - Power BI | Microsoft Learn
Regards
Phil
Proud to be a Super User!
Phil,
almost there, but as you can see below, most of the times, the color is not being applied.
My code:
Any clue?
Thanks in advance,
Omaffud
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 24 | |
| 24 | |
| 18 |
| User | Count |
|---|---|
| 54 | |
| 50 | |
| 41 | |
| 33 | |
| 25 |