I am trying to create a condition formula that yields red or green under the following conditions
If total A(forecast) is equal or higher than 10% of total b(budget) then red, less than 10% green.
However I am also dealing with negative growth compared to budget, I need to show show if the negative growth is between -1% to -9.999% green, greater than or equal to -10% red.
My current formula is =IF([Updated 2022 Forecast (CapEx Spent + New Forecast)]@row >= ([CapEx Budget 2022]@row * 1.1), "Red", "Green") which only account for the first part.
Any suggestions on integrating a condition for the negative growth greater or equal to -10%?
Thank you