Forum Discussion
ArmellA
4 years agoFrequent Visitor
Conditionnal formatting based on segment and table value
HI, Beginner here. I have this model, and want a conditionnal formatting in a matrix that looks like this. So depending on the "profile" value in the segment, I want the conditionnal formatting t...
- 4 years ago
Hi, ArmellA
You can try the following methods.
Measure = IF ( MAX ( Dim_Profile[Mandatory] ) = "yes" && DATEDIFF ( SELECTEDVALUE ( Fact_Completion[DateCompleted] ), TODAY (), DAY ) > 365, "Red" )Set Measure to the background color of the table font.
Is this the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
4 years agoCommunity Support
Hi, ArmellA
You can try the following methods.
Measure =
IF (
MAX ( Dim_Profile[Mandatory] ) = "yes"
&& DATEDIFF ( SELECTEDVALUE ( Fact_Completion[DateCompleted] ), TODAY (), DAY ) > 365,
"Red"
)
Set Measure to the background color of the table font.
Is this the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.