如何使 Excel 的 MIN 函数忽略集合中的零?

发布于 2024-10-10 13:35:31 字数 621 浏览 2 评论 0原文

在 Excel 中,我有以下公式 =(MIN(H69,H52,H35,H18)*(1/H18))*10 应该返回 MIN范围,并将其除以当前单元格 (*(1/H18) ),然后乘以 10。

我在添加 NULLIF 语句类型时遇到困难。我希望能够有(可能)空白行,并让 MIN 函数在选择下一个最低值(全部都在 1.0-0.1 之间)时忽略零/空白字段。

是否有一个修饰符可以应用于 MIN 函数以使其不比较 MIN 集中的零?有没有比 MIN 更好的函数使用?

以下是安排: alt text

  • 请记住包含 MIN 集合所在位置的语法
  • 原因使用逗号的 H69,H52,H35,H18 表示这些是嵌入的、单独的单元格,这些单元格也被安排用于视觉呈现。使用范围或冒号/分号运算符似乎不适用于此目的(见图)。
  • 这是为了防止出现以下情况:用户需要消除表单中为零的字段,每个条目有 2 次公式编辑,平均每次使用 4 个条目,因此每次使用表单可能出现 8 次错误。 。

In Excel, I have the following formula =(MIN(H69,H52,H35,H18)*(1/H18))*10 that is supposed to return the MIN of a range, and divide it by the current cell (*(1/H18) ), then multiply by 10.

I am having difficulty with adding a type of NULLIF statement. I want to be able to have (the possibility for) blank rows, and have the MIN function ignore zero/blank fields while selecting the next lowest value (all are between 1.0-0.1).

Is there a modifier i can apply to the MIN function to make it not compare zeroes in the MIN set? Is there a better function than MIN to use?

Here is the arrangement:
alt text

  • Please remember to include the syntax for where the MIN's set goes
  • The reason for the H69,H52,H35,H18 using commas is that these are embedded, individual cells that are arranged for visual presentation as well. Using a range, or colon/semi-colon operators don't appear to work for this purpose (see pic).
  • This is to prevent the following situation: users will need to eliminate fields that are zeros from the form, theres 2 formula edits per entry, averaging 4 entries per use, so 8 possible errors per form use...

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

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

发布评论

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

评论(2

三生殊途 2024-10-17 13:35:31

您可以使用数组公式:

=MIN(IF(A1:A100>0,A1:A100))

您需要按 ctrl+shift+enter 才能激活此公式。

You can use an array formula:

=MIN(IF(A1:A100>0,A1:A100))

You will need to hit ctrl+shift+enter to activate this formula.

哆啦不做梦 2024-10-17 13:35:31

你可以使用

=SMALL(A1:A3,COUNTIF(A1:A3,0)+1)

You could use

=SMALL(A1:A3,COUNTIF(A1:A3,0)+1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文