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.
我有一种情况,我需要在一系列单元格中计算准时与迟到。
我使用 if 语句 =IF(N2>K2 +30,"Late","") 这很好用,但是我想结合 countif 语句来计算包含“late”的单元格范围
谢谢
根据罗伯托的评论,如果您实际上使用公式将“迟到”放在每个相关行的 L 列中,您可以使用一个简单COUNTIF的方法来计算那些
COUNTIF
=COUNTIF(L:L,"Late")
或者如果您想使用 N 列中的源数据,只需使用 COUNTIF
=COUNTIF(N:N,">"&K2+30)
尝试这个:
=SUM(IF(N:N>K2+30,1,0))
按 CTRL+SHIFT+ENTER 将其作为数组公式输入。 如果您只需要计算迟到的次数,则更新。