Receiving an error with the formula and couldn't find anything similar within the existing posts. I have 3 columns (Testers) and each tester will have the option to choose if something passed, failed or is ready to retest. I'm trying to have the formula ready If Column A reads Passed, then read column B and if that read Passed, then read Column C and if that reads passed, indicate Passed, if not leave Blank.
I've been able to do it if the columns read Failed, but the Passed does not work as outlined. If any of the 3 columns indicate failed, then the script is failed (even if the other 2 pass it).
=IF([Tester Trevor]@row = "Failed", "Failed", IF([Tester No. 2]@row = "Failed", "Failed", IF([Tester No. 3]@row = "Failed", "Failed", "")))
To capture total Passed, all 3 columns must indicate Passed. I've tried both AND and OR in the formula
=IF(([Tester Trevor]@row = "Passed", IF(AND([Tester No. 2]@row = "Passed", IF(AND([Tester No. 3]@row = "Passed, "Passed", "")))
Let me know if you need any additional information - Thanks!