Forum Discussion
Anonymous
6 years agoNot applicable
conditional formatting based on other column
Hi Experts, I want to apply conditional formatting on "Activity Required Run Rate" that if - Activity Run Rate is less than Required Run Rate then color Required Run Rate columnwith Red color. ...
- 6 years ago
Anonymous add a measure with your logic
Color = IF ( [Activity Run Rate] < [Rquired Run Rate], "Red" )in conditional formatting, choose field value and select the above measure for color and it should work.
I would ❤Kudos 🙂 if my solution helped. ?
parry2k
6 years agoSuper User
Anonymous add a measure with your logic
Color = IF ( [Activity Run Rate] < [Rquired Run Rate], "Red" )
in conditional formatting, choose field value and select the above measure for color and it should work.
I would ❤Kudos 🙂 if my solution helped. ?
Anonymous
6 years agoNot applicable
I really appriciate for quick response.
Could you pls tell me how to color name if I want light red.
- parry2k6 years agoSuper User
Anonymous you can use the hex value instead of actual color name. I'm sure there are many way you can get hex code of your choice of color. https://www.color-hex.com/
I would 💖Kudos 🙂 if my solution helped. ?