基于范围的查找值

发布于 2025-01-21 13:47:22 字数 398 浏览 0 评论 0原文

我正在寻找一种可以根据另一个单元格中的值查找值的方式。就我而言,我有一个具有销售价值的雪橇,我需要知道成本的基于它的范围。我知道我可以通过endles If Statments做到这一点,但我希望有一种方法可以在单独的床单上的po pot在封闭的图片中的一个表格,该公式将查找其属于哪个范围,并为通过的价值返回正确的费用。

因此,例如,如果我将620.000传递给此功能,则应返回800,因为它是> = 600.000 and< = 799.999

“在此处输入图像说明”

I am looking for a way where I can look up a value based on a value in another cell. In my case i have a scell that holds a sales value and i need to know what the cost would be based in which range it falls in. I know i could do it via endles if statments but i hope there is a way where i can poot on a separate sheet a table in th enclosed pic and the formula would look up which range it would fall under and return the correct charge for the passed in value.

so for example if i pass 620.000 to this function it should return 800 since it is >= to 600.000 and <= 799.999

enter image description here

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

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

发布评论

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

评论(2

少女情怀诗 2025-01-28 13:47:22

尝试以下操作:

=vlookup(d1,a2:c8,3,1)

假设您建议的620在单元格中。

另外,单元格A2需要0不 -

带有index()和match():

=index(c2:c8,match(d1,a2:a8,1))

Try this:

=vlookup(d1,a2:c8,3,1)

Assuming the 620 you suggest is in cell d1.

Also cell A2 needs a 0 not -

With index() and match():

=index(c2:c8,match(d1,a2:a8,1))
世俗缘 2025-01-28 13:47:22

共享另外两个替代方案,

“

oldskool 方法 - &gt; lookup()函数

=LOOKUP(A10,A2:C8)

现代O365 方法 - &gt; Xlookup()函数

=XLOOKUP(A10,A2:A8,C2:C8,"None",-1)

Sharing two more alternatives,

FORMULA_SOLUTION

OLDSKOOL Approach --> LOOKUP() Function

=LOOKUP(A10,A2:C8)

Modern O365 Approach --> XLOOKUP() Function

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