Excel - if 和 or 函数

发布于 2024-12-07 02:50:04 字数 331 浏览 1 评论 0原文

我试图编写的公式是,

CellA             CellB              CellC
Total Price       Order status       Delivery Status**
Null              Authorised    
Null              Authorised         Null
$100              Authorised         Authorised

如果单元格 A = Null 且单元格 C = Null 或空白...则“错误”

我将如何编写公式?

The formula I'm trying to write is

CellA             CellB              CellC
Total Price       Order status       Delivery Status**
Null              Authorised    
Null              Authorised         Null
$100              Authorised         Authorised

if cell A = Null and cell C = Null or blank... then "ERROR"

How would I write the formula?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

迷雾森÷林ヴ 2024-12-14 02:50:04

使用下面的公式

=IF(AND($A2="null",OR($C2="NULL",$C2="")),"ERROR","NoError")

假设 CellA 为 A2,CellC 为 C2,如果您已为每个单元格分配了变量名称,则可以使用 CellA>CellC 改为

Assuming CellA is A2 and CellC is C2, use this formula below

=IF(AND($A2="null",OR($C2="NULL",$C2="")),"ERROR","NoError")

if you have assigned variable name to each cell you can use CellA and CellC instead

从我的头顶掉下来...

=IF(A2 == "NULL", IF(OR(C2 == "NULL", C2 == ""), "ERROR", ""), "")

Off the top of my head...

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