Formula to Change Status Symbols
I am looking for a formula that will change the symbols "Status" column.
If "Target End Date" isΒ in the past AND "Task Progress" is In Progress - Yellow
If "Target End Date" isΒ in the past AND "Task Progress" is Not Started - Red
If "Target End Date" is not in the past leave it - Green
Best Answer
-
Hey @Aimee Eckert
=IF([Task Progress]@row="Completed", "Green", IF([Target End Date]@row>=TODAY(), "Green", IF(AND([Target End Date]@row<TODAY(), [Task Progress]@row="Not Started"), "Red", "Yellow")))
Does this work for you?
Kelly
Answers
-
Hey @Aimee Eckert
=IF([Task Progress]@row="Completed", "Green", IF([Target End Date]@row>=TODAY(), "Green", IF(AND([Target End Date]@row<TODAY(), [Task Progress]@row="Not Started"), "Red", "Yellow")))
Does this work for you?
Kelly
-
Yes Kelly! Thank you so much!
Help Article Resources
Categories
Check out the Formula Handbook template!