문제

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