I am attempting to automate the RYG balls using two different columns, the End Date and % Complete columns. The logic is as follows:
1. If the end date is greater than today, the RYG ball = Green IF([End date]2 > TODAY(), "Green"
2. If the % complete is greater than .99, the RYG ball = Green IF([% Complete]2 > .99, "Green"
3. if the % complete is empty/blank, the RYG ball = Yellow IF([% Complete]2 = "Empty", "Yellow"
4. Anything else is red
I have tried the following formulas to no avail. Any suggestions?
=IF(OR([End Date]400 > TODAY(), [% Complete]400 > 0.99, "Green")), IF([End Date]400 = Blank, "Yellow", "Red")
=IF(OR(End Date > TODAY(), [% Complete]2 = "Full"), "Green", IF(ISBLANK([End Date]2 , "Yellow", "Red"))