Hi,
I am trying to nail down my formula so that Health (RGYG balls) will be a reflection of % complete AND due date. I have most of the formula there, however, if a date field is missing or a task has not started without a date field, it comes up as Red. I would like it to show Gray if a task hasn't started OR/AND a Due Date has not been populated with a date yet. Is this the correct way to associate health of a project - how far along a project should be at a certain point in time?
What is missing in my formula?:
=IF(AND([Start Date]@row > TODAY(), Status@row = "Not Started"), "Gray", IF(OR(AND([% Complete]@row <= 0.25, [Due Date]@row >= TODAY(), [Due Date]@row <= TODAY(7)), AND([% Complete]@row <> 1, [Due Date]@row < TODAY())), "Red", IF(AND([% Complete]@row <= 0.5, [Due Date]@row >= TODAY(), [Due Date]@row <= TODAY(7)), "Yellow", IF(AND([% Complete]@row >= 0.75, [Due Date]@row >= TODAY(), [Due Date]@row <= TODAY(7)), "Green", "Green"))))
Thanks for any help,
Lauren