I'm trying to create a helper column to evaluate multiple drop down column values. This one is to return a value if the tested columns have a specific value. (Once I get this one working I'll be adding a bunch more but, alas, ran into this issue out of the chute.)
For simplicity here, I've trimmed down my formula to only show two columns I'm testing, but there are a lot more which generated the error the first time so I knocked it down to the bare minimum to generate the error.
=AND([Module 1 Test Status]@row = "Pass", [Module 2 Test Status]@row = "Pass", 1, 0)
Returns #INVALID COLUMN VALUE
However if I change it to
=AND([Module 1 Test Status]@row = "Pass", [Module 2 Test Status]@row = "Pass", 1, 2)
or to
=AND([Module 1 Test Status]@row = "Pass", [Module 2 Test Status]@row = "Pass", "Pass", "Not Pass")
I get #INVALID DATA TYPE
The columns are dropdown lists and restricted to these drop down values:
N/A
Not Run
Pass
Ready to Retest
In Progress
Fail