I have been researching formulas trying to find solutions without having to tap into the community and duplicate my question with others, however, I really am stuck.
Trying to create a formula for RYG based on planned finish date and status.
Here is what I wrote - unparsable is the error. Are there supposed to be spaces between certain words?
=IF(AND(TODAY() > [Planned Finish]16, Status16 = "In Progress"), "Red", IF(AND(TODAY() > [Planned Finish]16, Status16 = "Not Started"), "Red", IF(AND(TODAY() > [Planned Finish]16, Status 16 = "Pending"), "Red", IF(OR(Status16 = "Completed", Status16 = "In Progress"), "Green", IF(Status16 = "Pending", "Yellow", IF(Status16 = "Not Started", "Gray"))))))
