I have the formula below based on some threads from this thread but I am getting an error.

IF(AND(OR(G894=2,G894=2),OR(F894=2,F894=2),"Mete","Irrelevant"))

Any solution would be greatly appreciated!!

有帮助吗?

解决方案

You misplaced a parenthesis. Remove this:

IF(AND(OR(G894=2,G894=2),OR(F894=2,F894=2),"Mete","Irrelevant"))
                                                              ^

And put it here:

IF(AND(OR(G894=2,G894=2),OR(F894=2,F894=2)),"Mete","Irrelevant")
                                          ^

Otherwise, you have:

AND(OR(G894=2,G894=2),OR(F894=2,F894=2),"Mete","Irrelevant")

As the expression and no parameters for the IF's true (or false) evaluation.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top