Hi Smartsheets wizards,
Good Evening!
I have created a formula that has been working great, however I find that if the actual finish date is missing for any reason the RAG does not change to RED. Here is the formula and the screenshot of the schedule. Kindly advise what I should change to get the RAG to change to red if the actual date is missing for any reason. Look at the date 8th Feb 2023 row.
=IF(OR(AND([Trending Start]@row < TODAY(), [Actual Start]@row = ""), AND(([Actual Start]@row - [Trending Start]@row) >= 20, [% Complete]@row <= 0.1)), "Red", IF(OR(AND(([Actual Start]@row - [Trending Start]@row) >= 10, [% Complete]@row < 0.5), AND([Actual Finish]@row > [Trending Finish]@row, [% Complete]@row <= 0.5)), "Yellow", IF(AND([% Complete]@row = 1, [Actual Finish]@row <> ""), "Blue", "Green")))