Hi All- I am working on a complex formula where I would like the Health column to update color based on specific Statuses. Then if the status is "In Progress", I want the Health column to update color based on the Time Elapsed and Percent Complete. The issue seems to be happening within the In Progress part of the formula where it is returning Incorrect Argument, blank, or Unparseable for any statuses where In Progress is selected. This is my formula:
=IF(ISBLANK([Target Due]@row), "Gray", IF(OR(Status@row = "On Hold", Status@row = "Canceled"), "Gray", IF(Status@row = "Complete", "Green", IF(AND(Status@row = "Not Started", TODAY() > [Target Start]@row), "Red", IF(AND(Status@row = "Not Started", TODAY() <= [Target Start]@row), "Gray", IF(AND(Status@row = "In Progress", ISNUMBER([Elapsed Time]@row), ISNUMBER([Percent Complete]@row)), IF(AND([Elapsed Time]@row > 0, [Elapsed Time]@row <= 25), IF([Percent Complete]@row > 20, "Green", IF(AND([Percent Complete]@row >= 15, [Percent Complete]@row <= 20), "Yellow", "Red"))), IF(AND([Elapsed Time]@row > 25, [Elapsed Time]@row <= 50), IF([Percent Complete]@row > 45, "Green", IF(AND([Percent Complete]@row >= 40, [Percent Complete]@row <= 45), "Yellow", "Red"))), IF(AND([Elapsed Time]@row > 50, [Elapsed Time]@row <= 75), IF([Percent Complete]@row > 70, "Green", IF(AND([Percent Complete]@row >= 65, [Percent Complete]@row <= 70), "Yellow", "Red")))))))))
Any help would be appreciated!