我真的很难为以下场景制定一个公式:
If M3 is less than S3 then add O3 and P3 together,
If M3 and S3 are both empty then display '0',
If M3 is the exact same number as S3 then display add O3 and P3 together and then add '5',
If M3 is greater than S3 then display '20'
到目前为止我已经得到了以下内容:
=IF(AND(M3<S3),SUM(O3+P3),IF(AND(M3=S3),5+O3+P3,IF(AND(M3=S3),"0")))
但它即使在细胞空白的情况下显示5
- 有任何想法吗?
答案 0 :(得分:1)
怎么样
=IF(LEN(M3) + LEN(S3) = 0, "0", IF(M3 < S3, O3 + P3, IF(M3 = S3, O3 + P3 + 5, 20)))
答案 1 :(得分:0)
=IF(M3<S3,SUM(O3+P3),
IF(AND(M3="",S3=""),0,
IF(M3=S3,5+O3+P3,
IF(M3>S3,20,"Other Criteria"
))))
我发现每个人都更容易使用新行。
它显示5的原因是你的第二和第三个&#39;如果&#39;混淆了。
答案 2 :(得分:0)
您问题的确切答案是:
=IF(M3<S3,O3+P3,IF(AND(M3="",S3=""),0,IF(M3=S3,(O3+P3+5),IF(M3>S3,20,""))))
但是这会导致你的错误。有许多条件没有考虑在内。
你想要完成什么?