Hi,
I am giving myself a headache trying to resolve the issues I am having with this formula.
Currently this is set up to change the results in a dropdown Status column based on dates in other cells, its currently working well based on the above, as follows;
=IFERROR(IF([Actual Submit Date]@row = "", "Pending", (IF([Actual Compete date]@row = "", "Internal Review", (IF([Actual Date to Client]@row = "", "Send To Client", (IF([Actual Client comments]@row = "", "Client Review", (IF([Actual Piramal Response]@row = "", "Addressing Comments", (IF([Actual Final Client Approval]@row = "", "Client Approval", (IF([Actual submission to QA]@row = "", "QA Review", (IF([Actual Final or QA Approval]@row = "", "QA Review", "Approved"))))))))))))))), "")
However, there is now another column which needs to be taken into account, not all documents require client approval, so we have a yes no drop down, "Client Review Required" - Yes/ No. If Yes, the above path can be followed, if no, then the status must jump straight to "QA Review" and continue from there.
I cannot get my head around how to lay that all out in one formula, all help is appreciated!