Hi Smarties,
I know this is probably an easy one, but I have been cracking my head over the last 2 days so here I am!
I have 4 columns representing Task 1 to Task 4. Each column has a single Drop-Down with Not Yet Started, In Progress and Completed.
On the column Health, I have symbols of Red, Yellow and Green.
Basically, I want to build an IF function, whereby if one of the cells in Task 1 to Task 4 is Not Yet Started, it will turn Red, if any of them In Progress it will turn Yellow otherwise Green (if Completed).
I managed to do this with Contains, see below :
=IF(CONTAINS("Not Yet Started", [Task 1]@row:[Task 4]@row), "Red", IF(CONTAINS("In Progress", [Task 1]@row:[Task 4]@row), "Yellow", "Green"))
However, I need to put Blank as Red as well as you can see it is showing Green when the cells are Blank.
I have tried to use ISBLANK, OR and AND but I am not sure if I have done it right.
Any advice will be appreciated otherwise I wont be able to sleep tonight! 😁
Thanks
Syed