Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
azakir
Resolver I
Resolver I

Power BI Conditional Format

Hi Guys. Looking for some help on conditional formatting and counting of measure.

I have the following table: 

 

azakir_2-1678057052118.png

 

In a matrix visual, I would like to conditional format just the row total based on the values of subcategory. Regardless of the total, if two thirds (2/3) of overall subcategories met the target, I would like to conditional format the row total as green. In the example below, Drill has 5 subcategories. Even though overall Drill category failed to meet the target, but because 3 out of 5 subcategories did meet the target, I would like to change it to green. 

azakir_4-1678057323613.png

** Achieved = if( [Actual] >= ([Target] * 0.667), 1,BLANK())

Is there a way I could also count the number of rows that have achieved 1 for the measure.

So something along the lines of:

CALCULATE( COUNT(EQ Code), **Achieved = 1)
1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

3 REPLIES 3
Ahmedx
Super User
Super User

Hi @Ahmedx Exactly what I was looking for. Thanks for providing with the PBIX as well. 

amitchandak
Super User
Super User

@azakir , Based on what I got, you can use measure based conditional formatting

 

example

Measure =
Switch(true(),
max(Table[status]) = "In production" , Switch(true(),
[SLA] = 1 , "Green" ,
[SLA] >= .5 , "Amber" ,
"Red "
) ,
max(Table[status]) = " Product completed" , Switch(true(),
[SLA] = 1 , "Green" ,
[SLA] >= .5 , "Amber" ,
"Red "
)
)

 

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 with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.