VLOOKUP 范围帮助

发布于 2024-11-01 04:02:50 字数 172 浏览 0 评论 0原文

我在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 技术交流群。

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

发布评论

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

评论(2

柠栀 2024-11-08 04:02:50

认为您需要添加第四个参数 - range_lookup。我总是将其设置为FALSE

=VLOOKUP(I2,Sheet2!B:C,2,FALSE)

Think you need to add the 4th parameter - range_lookup. I always set this to FALSE.

i.e. =VLOOKUP(I2,Sheet2!B:C,2,FALSE)

痴情 2024-11-08 04:02:50

在我的 Excel 2003 中,当我将“,”替换为“;”时,它就可以工作了。是否有版本不包含“,”作为参数之间的分隔符?

这对我有用:

=VLOOKUP(I2;Sheet2!B:C;2)

如果您只想精确匹配,那么您应该使用

=VLOOKUP(I2;Sheet2!B:C;2;FALSE)

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:

=VLOOKUP(I2;Sheet2!B:C;2)

If you want to have only exact matches then you should use

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