I would like to mark tasks with an "At Risk" check if we are within 3 days of the "End Date" and the "Status" is NOT green. The status column is currently as follows:
=IF(AND([End Date]@row < TODAY(), Complete@row = 0), "Red", IF(Complete@row = 1, "Green", "Gray"))
I've seen formulas to incorporate the "At Risk" check within a certain number of days of an end date, but based on a numerical percentage completed or text marked in progress or something to that effect. But don't know how to define "Green" or whether I need to repeat some part of the above.
Would love some help on the formula!