最小 - 第二个最低数字使用非相邻范围

发布于 2025-02-09 07:35:05 字数 434 浏览 0 评论 0原文

我理解最小公式是标准的,并创建了以下公式,以找到非相邻范围

= min(g14:i12,k14:m14)

但是我需要找到第二个最小数字,但经历了许多错误

= min(((g14:i12,k14:m14),2),2)

这将返回2的值,如果我添加了间接的间接,我会收到错误,任何关于正确方式的想法从非相邻范围中找到第二个最低数字?

= min(间接((“ G14:i12”,“ K14:M14”),2)),2))

I understand the min formula as a standard and have created the below formula to find the min value across to non adjacent ranges

=MIN(G14:I12, K14:M14)

But what I need is to find the second smallest number but am experiences many errors

=MIN((G14:I12, K14:M14),2)

this returns the value of 2, and if i add indirect I receive an error, any thoughts on the correct way of finding the second lowest number from non adjacent ranges?

=MIN(INDIRECT(("G14:I12", "K14:M14"),2))

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

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

发布评论

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

评论(1

辞慾 2025-02-16 07:35:05

如果要第二个最小数字,则可以尝试small()函数。 try-

=SMALL(G2:M2,2)

If you want second minimum number then could try SMALL() function. Try-

=SMALL(G2:M2,2)

enter image description here

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