excel嵌套if公式

发布于 2025-01-05 17:19:57 字数 286 浏览 1 评论 0原文

我正在处理一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

触ぅ动初心 2025-01-12 17:19:57

这有效:

=IF(A2=A3,IF(OR(B2-B3=5,B2-B3=-5,B2-B3=20,B2-B3=-20),"yes","no"),"no")

This works:

=IF(A2=A3,IF(OR(B2-B3=5,B2-B3=-5,B2-B3=20,B2-B3=-20),"yes","no"),"no")
云之铃。 2025-01-12 17:19:57

可能在这里使用 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")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文