我需要根据两个不同单元格中的文本在 Excel 中编写“if”语句。
If E2 ='in play' and F2 ='closed' output 3
If E2= 'in play' and F2 ='suspended' output 2
If E2 ='In Play' and F2 ='Null' output 1
If E2 ='Pre-Play' and F2 ='Null' output -1
If E2 ='Completed' and F2 ='Closed' output 2
If E2 ='Suspended' and F2 ='Null' output 3
If anything else output -2
其中 Null 是单元格中没有值
我试图用下面的代码来做到这一点,但我似乎无法让两个或多个 IF AND 语句一起工作。我怎么解决这个问题?
=IF(AND(E2="In Play",F2="Closed"),3, -2), IF(AND(E2="In Play",F2=" Suspended"),3,-2)