Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有下面的公式基于这个线程中的一些线程,但我得到了一个错误。
IF(AND(OR(G894=2,G894=2),OR(F894=2,F894=2),"Mete","Irrelevant"))
任何解决方案将不胜感激!
你放错括号了。删除这个:
IF(AND(OR(G894=2,G894=2),OR(F894=2,F894=2),"Mete","Irrelevant")) ^
并把它放在这里:
IF(AND(OR(G894=2,G894=2),OR(F894=2,F894=2)),"Mete","Irrelevant") ^
否则,您有:
AND(OR(G894=2,G894=2),OR(F894=2,F894=2),"Mete","Irrelevant")
作为 IF 的真(或假)评估的表达式,没有参数。