Formula not working
Hello, I am trying to make a formula that will automate a symbol based on a text in another column. Below is my current formula that isn't working. Any help would be appreciated!
Designations I would like are: Complete = Green; Planned = Blue; In Progress = Yellow; ON HOLD or N/A = Red
=IF(ISBLANK([RegSci Review Status]@row), " ", IF([RegSci Review Status]@row = Complete, "Green", IF([RegSci Review Status]@row = Planned, "Blue", IF([RegSci Review Status]@row = ON HOLD OR N/A, "Red", IF([RegSci Review Status]@row = In Progress, "Yellow")))))
Best Answer
-
Hii RobynK,
Please try the following formula:
=IF(ISBLANK([RegSci Review Status]@row), "", IF([RegSci Review Status]@row = "Complete", "Green", IF([RegSci Review Status]@row = "Planned", "Blue", IF(OR([RegSci Review Status]@row = "ON HOLD", [RegSci Review Status]@row = "N/A"), "Red", IF([RegSci Review Status]@row = "In Progress", "Yellow")))))
Hope it will work. )
Thank You!
Anjanesh Vaidya
Answers
-
Hii RobynK,
Please try the following formula:
=IF(ISBLANK([RegSci Review Status]@row), "", IF([RegSci Review Status]@row = "Complete", "Green", IF([RegSci Review Status]@row = "Planned", "Blue", IF(OR([RegSci Review Status]@row = "ON HOLD", [RegSci Review Status]@row = "N/A"), "Red", IF([RegSci Review Status]@row = "In Progress", "Yellow")))))
Hope it will work. )
Thank You!
Anjanesh Vaidya
-
That worked!! Thank you so much Anjanesh
Best, Robyn
Help Article Resources
Categories
Check out the Formula Handbook template!