Excel(如何使用 if then else 来满足以下条件)

Excel(如何使用 if then else 来满足以下条件)
cell 1>cell 2,cell 1<cell 4 print the value in cell 3
cell 1<cell 2,cell 1<cell 4 print the value in cell 4
cell 1>cell 2,cell 3<cell 2 print the value in cell 2

如何在 Excel 中的单个单元格中使用这三个条件

=IF(AND((E27>F27,E27<H27),G27),IF((E27<F27,E27<H27),H27),IF((E27>F27,G27<F27),F27),0)

它不工作,有人可以帮我吗

答案1

你写错IFAND条件

句法:

IF语法如下,

IF(Condition, "True", "False")

AND语法如下,

AND(Condition1, Condition2, ...)

因此你的公式应该是

 =IF(AND(A1>B1,A1<D1), C1, IF(AND(A1<B1, A1<D1), D1, IF(AND(A1>B1,C1<B1), B1, "Not Applicable")))
                                                                               ^^^^^^^^^^^
                                                                          It can be ZERO, as per your formula

相关内容