I'm trying to render a "Red" "Yellow" or Green" solution from more than one criterial. Formula reads this way.
=IF(AND([% Complete]25 < "1", [End Date]25 > TODAY()), "Red", IF(AND([% Complete]25 < "1", [End Date]25 = TODAY()), "Yellow"), IF(AND([% Complete]25 = "1", [End Date]25 = TODAY()), "Green"))
Essentially I want to reference the "% Complete" column. If the completion is less than 1 (percentage format) then read the "end date" column. If the "end date" date is before the current date "TODAY()" then select "Red". If the "end date" date is = to the current date "TODAY()" then "Yellow". If the "end date" date is before the current date "TODAY()", then "Green"
In other words, if the task is 100% complete then it stays "Green" regardless. If the task is less than 100% complete then read the "end date" column to see if the task still has time to be completed (Green), is at risk (TODAY() = "end date"), (Yellow), if the current date has passed the "end date" and less than 100% complete, then (Red).