如何在Excel中的COUNTIF函数中嵌入计算?
我的数据如下所示:
AB
1 0
1 0
0 1
0 1
如何计算同一行中 A 列大于 B 列的数字,而不添加另一列(即 A 列和 B 列之间的减去值)?
上面示例的输出应输出 2。
My data looks like below:
A B
1 0
1 0
0 1
0 1
How can I count the number that in the same row column A are greater than column B without adding another column which is the subtracted value between column A and column B?
The output of above example should output 2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
=SUMPRODUCT((1=1)*(A1:A4>B1:B4))
=SUMPRODUCT((1=1)*(A1:A4>B1:B4))