excel嵌套if公式
我正在处理一个Excel文件,我正在尝试使用嵌套的if公式来实现我想要的。
我有两列:
AB
条件是这样的: 如果a2=a3,则检查b2和b3的负数是否为某个值,如果是,则为是,否则为否。这将迭代直到 Excel 文件末尾。
到目前为止,这就是我所拥有的。不知道如何使用excel公式。非常感谢任何帮助。
if(a2=a3,b2-b3=5 or b2-b3=-5 or b2-b3=20 or b2-b3=-20, "yes", "no")
I am working on an excel file, and i am trying to use a nested if formula to achieve what i would like.
i have two columns:
A B
condition is this:
if the value in a2=a3, then check if the minus of b2 and b3 is certain value, and if it is, put a yes, else put a no. this will iterate till the end of the excel file.
so far here is what i have. not sure how to use the excel formulas. any help is much appreciated.
if(a2=a3,b2-b3=5 or b2-b3=-5 or b2-b3=20 or b2-b3=-20, "yes", "no")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这有效:
This works:
可能在这里使用 ABS 函数..
=IF(AND(A2=A3,OR(ABS(B2-B3)={5,20})),"yes","no")
Possibly use ABS function here..
=IF(AND(A2=A3,OR(ABS(B2-B3)={5,20})),"yes","no")