如何使 Excel 的 MIN 函数忽略集合中的零?
在 Excel 中,我有以下公式 =(MIN(H69,H52,H35,H18)*(1/H18))*10
应该返回 MIN
范围,并将其除以当前单元格 (*(1/H18) ),然后乘以 10。
我在添加 NULLIF 语句类型时遇到困难。我希望能够有(可能)空白行,并让 MIN 函数在选择下一个最低值(全部都在 1.0-0.1 之间)时忽略零/空白字段。
是否有一个修饰符可以应用于 MIN 函数以使其不比较 MIN 集中的零?有没有比 MIN
更好的函数使用?
以下是安排:
- 请记住包含
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:
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用数组公式:
您需要按 ctrl+shift+enter 才能激活此公式。
You can use an array formula:
You will need to hit ctrl+shift+enter to activate this formula.
你可以使用
You could use