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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Conditionnal Formatting Not Working

Hello, 

I have this table:

 

Aho00_2-1651224739842.png

 

And i would like it to be like that : 

 

Aho00_4-1651224894001.png

 

if 'Yes' is inferior or equal to 3% then it's green if it's superior to 3% then it's red
No conditionnal formating for the "No"

my measure used here is :

Number of Tilt = COUNT(Table[Tilt]).

Thanks in advance for you help.

 

 

 

 

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

Try the formula like below:

Number of hilt = CALCULATE(SUM('Table'[Value]),ALLEXCEPT('Table','Table'[Tilt]))
%TG = 
var sum_ = CALCULATE(SUM('Table'[Value]),ALL('Table'))
return [Number of hilt]/sum_
M =
IF (
    MAX ( 'Table'[Tilt] ) = "No",
    "black",
    IF ( MAX ( 'Table'[Tilt] ) = "Yes" && [%TG] <= 0.03, "green", "red" )
)

 

vhenrykmstf_0-1651558566151.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

Try the formula like below:

Number of hilt = CALCULATE(SUM('Table'[Value]),ALLEXCEPT('Table','Table'[Tilt]))
%TG = 
var sum_ = CALCULATE(SUM('Table'[Value]),ALL('Table'))
return [Number of hilt]/sum_
M =
IF (
    MAX ( 'Table'[Tilt] ) = "No",
    "black",
    IF ( MAX ( 'Table'[Tilt] ) = "Yes" && [%TG] <= 0.03, "green", "red" )
)

 

vhenrykmstf_0-1651558566151.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hello, thanks for the answer and sorry for my very late reply.

I couldn't check before today because i was busy. (2 weeks university / 2 weeks in company)

Your suggestion worked, i used "Count" instead of sum since i'm counting the number of yes and no.

Sorry again!

And thanks!

Have a nice day.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.