来自不同工作簿的 VLOOKUP

发布于 2024-10-30 21:18:58 字数 497 浏览 0 评论 0原文

我有 2 个工作簿....OdysseyDeposit 其中我的源数据和 Civil Bank Accnt Recon 其中包含 OdysseyDeposit 的 VLOOKUP。

这是我正在使用的 VLOOKUP 函数:

=IF(ISNA(VLOOKUP(A2,[OdysseyDeposit.xls]Sheet1!$A$9:$L$19, 12, 0)), 0, 
VLOOKUP(A2,[OdysseyDeposit.xls]Sheet1!$A$9:$L$19, 12, 0))

ISNA 函数在那里,因此如果在 OdysseyDeposit 中找不到该值,我会在 Civil Bank Accnt Recon 工作簿中得到 0,因此我的添加工作正常。

然而,我的印象是 OdysseyDeposit 不必打开才能检索值,但如果它关闭,我不会得到任何值,只是零。

我对关闭源文件时 VLOOKUP 的工作是否不正确?是不是因为ISNA功能关闭后就不能更新了?

I have 2 workbooks....OdysseyDeposit where my source data is and Civil Bank Accnt Recon which contains VLOOKUP to the OdysseyDeposit.

Here is the VLOOKUP function that I am using:

=IF(ISNA(VLOOKUP(A2,[OdysseyDeposit.xls]Sheet1!$A$9:$L$19, 12, 0)), 0, 
VLOOKUP(A2,[OdysseyDeposit.xls]Sheet1!$A$9:$L$19, 12, 0))

The ISNA function is there so if the value is not found in OdysseyDeposit I get a 0 in my Civil Bank Accnt Recon workbook so my addition works correctly.

However, I was under the impression that OdysseyDeposit did NOT have to be open in order to retrieve the values, but if it is closed I don't get any values, just zeros.

Am I incorrect about VLOOKUP working when the source file is closed? Could it not be updating when it is closed because of the ISNA function?

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

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

发布评论

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

评论(1

流心雨 2024-11-06 21:18:58

您是对的,不需要打开工作簿来检索值,但确实需要建立它们之间的链接。

  1. 您应该打开两个工作簿。
  2. 在公式栏中键入公式并从其他工作簿中选择范围。
  3. 如果您关闭两个工作簿并打开包含公式的工作簿,系统会要求您在两个工作簿之间建立链接/引用 (Excel 2007)

You are correct the workbook does not need to be open to retrieve values but a link between them does need to be established.

  1. You should open both workbooks.
  2. In the formula bar type your formula and select the ranges from the other workbook.
  3. If you close both workbooks and open the one containing the formula you will be asked to establish a link/reference between the two (Excel 2007)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文