Hello!
I cannot seem to figure out how to put together two working IF and IF(AND...) statements.
Thank you for any direction on how to accomplish.
Sandy
If I put "IF(AND..." in front of all the IF statements, only my first two statements work. The rest are ignored.
If I remove the "(AND..." from only the first two statements, I get unparseable or incorrect argument set (depending on where I place my parens).
=IF([Project or Task Status]1 = "Rolled over to another project", [Last Updated]1 = ""), "", IF([Project or Task Status]1 = "Removed", [Last Updated]1 = ""), "", IF(AND([Project or Task Status]1 = "Removed"), " ", IF(AND([Last Updated]1 = " "), "Red", IF(AND(Done1 = 1), "Blue", IF(AND([Last Updated]1 >= TODAY() - 7, Done1 = 0), "Green", IF(AND([Last Updated]1 >= TODAY() - 15, Done1 = 0), "Yellow", "Red")))))