范围限制公式的结果

发布于 2024-10-16 23:13:50 字数 83 浏览 2 评论 0原文

如果计算给出负数,如何将一系列单元格设置为零?

示例:=D12-D19

答案:-1

我想将负数替换为零。

How do I Make a range of Cells to Zero If a calculation gives A Negative Number?

Example: =D12-D19

Answer: -1

I would like to replace the negative to zero.

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

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

发布评论

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

评论(2

陌路黄昏 2024-10-23 23:13:50

更有效的是,您可以使用:

=MAX(0, SUM(A1:A5))

More efficiently, you could use:

=MAX(0, SUM(A1:A5))
不忘初心 2024-10-23 23:13:50

试试这个:

=IF(SUM(A1:A5) < 0, 0, SUM(A1:A5))

或者根据您的区域设置:

=IF(SUM(A1:A5) < 0; 0; SUM(A1:A5))

这意味着:

IF the sum of the cells A1 + A2 + A3 + A4 + A5 is less than 0
  make it 0
ELSE
  make it the sum of the cells A1 + A2 + A3 + A4 + A5

Try this:

=IF(SUM(A1:A5) < 0, 0, SUM(A1:A5))

or depending on your locale:

=IF(SUM(A1:A5) < 0; 0; SUM(A1:A5))

which means:

IF the sum of the cells A1 + A2 + A3 + A4 + A5 is less than 0
  make it 0
ELSE
  make it the sum of the cells A1 + A2 + A3 + A4 + A5
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文