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.
一些单元格包含时间,其中一些包含“#VALUE!”、“######”和文本。我想总结所有只包含时间的单元格。
同时我写了=SUMIF(D13:D43,"<>#VALUE!"),但只有当单元格包含“#VALUE!”时它才有效
=SUMIF(D13:D43,"<>#VALUE!")
我怎么能做到这一点?
假设您的范围来自 D2:D8,请使用以下数组公式。
=SUM(IF(ISERROR(D2:D8),"",D2:D8))
要制作数组公式,请在完成写入时按 CTRL + SHIFT + ENTER,而不仅仅是 ENTER>