Hello! I am trying to set up an automation that changes a cell to "Complete - Pass" when four different conditions are meet. The way I am doing this is by adding and additional column that does a pretty complex if statement, and from that it either returns "Pass" or "Fail".
=IF([QA Filter FAIL]@row = "Fail", "Fail", (IF(AND([Code QA]@row = "Pass", Format@row = "Pass", OR([Internal Dashboard QA]@row = "Pass", [Internal Dashboard QA]@row = "N/A"), OR([Cross Dashboard QA]@row = "Pass", [Cross Dashboard QA]@row = "N/A")), "Pass", "")))
Based on what is in this column (QA Filter), I set up this automation. (There is two of them, one for a pass which is shown below and one for fail)
The automation doesn't seem to be working and I think it is because there is an if statement in the column. When I just type in Pass in the column the automation works as expected. Is there a way around this?