I am trying to set up a formula to allow for conditional formatting but having some problems.
This is the formula I'm trying:
=IF([Actual]19 >= [Target]19, IF([Actual]19 < SUM([Target]19 * 0.1), IF([Actual]19 > SUM([Target]19 * 0.1), "GREEN", "AMBER", "RED"))
but the result leaves the cell blank with no error message.
What I'm trying to get it do is:
- If Actual >= Target = 'Green'
- If Actual is less than 10% of Target = 'Amber'
- If Actual is more than 10% of Target = 'Red'
Can anyone shed some light on where I'm going wrong please?