Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含很多行的 Excel 表格。每条记录/行有两列数字。
如何获取第一列大于 1、第二列大于 2 的记录数(行)?
你试过这个CountIfs功能吗?
CountIfs
=COUNTIFS(A:A,">1",B:B,">2")
这仅计算两个条件都为真的那些,我认为这是您想要的。
例子:
大卫的解决方案是正确的。
作为替代方案,您可以使用SUMPRODUCT
SUMPRODUCT
=SUMPRODUCT((A:A>1)*(B:B>2))