I am trying to set a colored dot to Green if the project is on time, Red if it is late and Yellow if it is not started ([Date Completed] = blank). The Red and Green work, but I cannot get the yellow dot. Any help would be greatly appreciated. This is the formula as it stands.
=IF(OR(ISBLANK([Date Completed]1, "Yellow"), IF([Date Completed]1 - [Scheduled Date]1 <= 0, "Green", IF([Date Completed]1 - [Scheduled Date]1 > 0, "Red"))))