Greetings:
Trying to create a formula that tracks task duration displayed by "symbol" in conjunction with another condition of the task:... complete, or not started.
I was able to get the symbols to show up properly based on calculated duration. However, the bottleneck is related to the formula not picking up a symbol based on Task status of ..."Complete" or "Not Started"
The Formula I have working right now is:
=IF([Actual Duration]1 < [Planned Duration]1, "Green", IF([Actual Duration]1 > [Planned Duration]1, "Red", IF([Actual Duration]1 = [Planned Duration]1, "Yellow")))
What I'm trying to include is that if it looks at the Column of "STATE" that if it also equals {Completed} to display "Green" and if it equals {Not Started} to display "Gray" all in one formula.
Thank you for your consideration.