基于范围的查找值
我正在寻找一种可以根据另一个单元格中的值查找值的方式。就我而言,我有一个具有销售价值的雪橇,我需要知道成本的基于它的范围。我知道我可以通过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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试以下操作:
假设您建议的620在单元格中。
另外,单元格A2需要0不 -
带有index()和match():
Try this:
Assuming the 620 you suggest is in cell d1.
Also cell A2 needs a 0 not -
With index() and match():
共享另外两个替代方案,
• oldskool 方法 - &gt;
lookup()
函数•现代O365 方法 - &gt;
Xlookup()
函数Sharing two more alternatives,
• OLDSKOOL Approach -->
LOOKUP()
Function• Modern O365 Approach -->
XLOOKUP()
Function