I have the following formula used in a sheet to change RYG symbol colors based on a targeted date status.
=IF([Due Date]@row < TODAY(), "Red", IF(AND([Due Date]@row >= TODAY(), [Due Date]@row < TODAY(+7)), "Yellow", "Green"))
This works, however - I need it to stay BLANK if the status is a certain setting OR if there is a completion date entered within another column...basically this but instead of ISDATE if Blank or Not a Date???
=IF(ISDATE([Complete Date]@row), IF([Due Date]@row < TODAY(), "Red", IF(AND([Due Date]@row >= TODAY(), [Due Date]@row < TODAY(+7)), "Yellow", "Green")))