Forum Discussion
How visualze a alert or warning stats?
- 7 years ago
HI, Anonymous
The logic of your two rules are repeated, Since ">=-40 &&<125" contains ">=-39 &&<120" , and in the logical operations for conditional formatting, it will calculate rules from the bottom up. So for your setting, the value between -39 and 120 will be "Red".
and for your case, you could try this way:
Step1:
Add a measure
conditional = IF([Averge Temperarure Value]<=-40||[Averge Temperarure]>126,1,0)
( [Averge Temperarure Value] is an average measure
Averge Temperarure Value = CALCULATE(AVERAGE(Table1[Temperarure])))
Step2:
Then use this measure to set conditional formatting for Averge Temperarure column
Best Regards,
Lin
thanks but it wasn't that one i was looking. I'm looking for more conditional formatting column. So I wanna give a color to temperature once it's lower than -40 or higher than 126 then the color gonna change. I have tried using the conditional formatting and choseed background color by rules without any sucess. The thing is the second value should change place also if its greater than 126 and less than -39 then show it red.
HI, Anonymous
The logic of your two rules are repeated, Since ">=-40 &&<125" contains ">=-39 &&<120" , and in the logical operations for conditional formatting, it will calculate rules from the bottom up. So for your setting, the value between -39 and 120 will be "Red".
and for your case, you could try this way:
Step1:
Add a measure
conditional = IF([Averge Temperarure Value]<=-40||[Averge Temperarure]>126,1,0)
( [Averge Temperarure Value] is an average measure
)
Step2:
Then use this measure to set conditional formatting for Averge Temperarure column
Best Regards,
Lin