Forum Discussion
Conditional formatting with dynamic min and max
- 7 years ago
Hi Anonymous
You may create a measure and use it for 'Rules' as below picture. Attached the sample file for your reference.
Measure = IF ( MAX ( ConditionTable[Value] ) < [Value1_min], 1, IF ( MAX ( ConditionTable[Value] ) > [Value1_max], 2, 3 ) )Regards,
Cherie
Hi Anonymous
You may create a measure and use it for 'Rules' as below picture. Attached the sample file for your reference.
Measure =
IF (
MAX ( ConditionTable[Value] ) < [Value1_min],
1,
IF ( MAX ( ConditionTable[Value] ) > [Value1_max], 2, 3 )
)
Regards,
Cherie
- v-cherch-msft7 years agoMicrosoft Employee
Hi Anonymous
Could you tell me if your problem has been solved? If it is,kindly mark the helpful answer as a solution and welcome to share your own solution. More people will benefit from here. If not, please share more details for us so that we could help further on it.
Regards,
Cherie
- Anonymous7 years agoNot applicable
Many thanks Cherie,
This looks to work in a calculated column
Calc. column= if([value]<[value_min], 1, if([value]>[value_max],2,3))
- AgustinBrocardo4 years agoFrequent Visitor
I was trying to do the same but with gradient style of formatting. Is there any way in which i can set a variable limit for the gradient?
Thanks!