VLOOKUP 范围帮助
我在sheet1的单元格中有以下VLOOKUP。
=VLOOKUP(I2,Sheet2!B:C,2)
我假设如果在工作表 2 的 B 列中找到与工作表 1 中的 I2 中的值匹配的值,则会尝试返回工作表 2 上的 C 列中的相应值 。
但这似乎不起作用 有什么想法我哪里出错了吗?
I have the following VLOOKUP in a cell on sheet1.
=VLOOKUP(I2,Sheet2!B:C,2)
I assumed that this would attempt to return the corresponding value in column C on sheet 2 if it found a value in column B on sheet 2 that matched the value in I2 in sheet 1.
This doesn't seem to work though. Any ideas where I'm going wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
认为您需要添加第四个参数 -
range_lookup
。我总是将其设置为FALSE
。即
=VLOOKUP(I2,Sheet2!B:C,2,FALSE)
Think you need to add the 4th parameter -
range_lookup
. I always set this toFALSE
.i.e.
=VLOOKUP(I2,Sheet2!B:C,2,FALSE)
在我的 Excel 2003 中,当我将“,”替换为“;”时,它就可以工作了。是否有版本不包含“,”作为参数之间的分隔符?
这对我有用:
如果您只想精确匹配,那么您应该使用
With my Excel 2003 it is working, when I replace the "," by ";". Are there versions out there that exepts "," as divider between the parameters?
This is working for me:
If you want to have only exact matches then you should use