I just can't get this to work properly...stuck..need help. Much appreciated.
PLS Help RYGB Status Automation based on dates
=IF([Identified as Optimization Project]@row = 0, "Not REO", IF(Status@row = "Red", "Not Approved", IF(Status@row = "Black", "Completed", IF([Task Count 2 Review]@row = 1, "Green", IF([Today's Date]@row >= [Gate 2 (Review) End Date]@row - 5, "Yellow", IF([Today's Date]@row <= [Gate 2 (Review) End Date]@row, "Blue", "Red"))))))
1. If “Identified as Optimization Project is NOT checked= “Not REO”
2. If Status@row= “Red” = “Not Approved”
3. If Status@row= “Black” = “Completed”
4. If the task count Review@row is checked= “Green” (any time this is checked it should be Green)
5. If Today’s Date@row is between start date and start + 10 days is blue
6. If today’s Date@row is in the last 5 days is yellow
7. If its neither 4,5,6 then its red
I can get parts of the formula to work but not all together and I suspect is something with the order of operations??