I’m working on a project where I need to have to 2 conditions on 1 status indicator.
- 1 for tracking duration against today's date:
=IF(NETWORKDAY([Start Date]9 + 1, TODAY()) / Duration9 <= [% Complete]9, "Green", "Yellow")
- 2. Tracking if a task is not completed on time:
=IF(AND(TODAY() >= [End Date]10 + 1, [% Complete]10 < 1), "Red", "Green")
Is it possible to combine the 2 statements in 1 formula? Or should I be taking another approach?