跨文档 Excel 公式

发布于 2024-11-29 02:29:04 字数 440 浏览 0 评论 0原文

有谁知道是否可以在 Excel 文档中 MATCH() 单元格?

目前,我有以下 Excel 公式,该公式会引发 Value Not available 错误:

=MATCH( $C$2, 'fooDoc.csv'!$C$2 : 'fooDoc.csv'!$C$1000, 1 )


我的想法是,我获取所在文档的单元格 C2 中的值,并检查它在 fooBar.csv 文档的单元格范围 C2 : C1000 中出现的位置。

请注意,以下公式确实有效,因此我可以访问这些值:

=MATCH( 'fooDoc.csv'!$C$2, 'fooDoc.csv'!$C$2 : 'fooDoc.csv'!$C$1000, 1 )

Does anybody know if it is possible to MATCH() cells across Excel documents?

At the moment I have the following Excel formula which throws a Value Not Available error:

=MATCH( $C$2, 'fooDoc.csv'!$C$2 : 'fooDoc.csv'!$C$1000, 1 )

The idea is that I take the value in cell C2 of the document I am in, and check where it appears in the cell range C2 : C1000 in the fooBar.csv document.

Please note that the following formula does work, so I do have access to the values:

=MATCH( 'fooDoc.csv'!$C$2, 'fooDoc.csv'!$C$2 : 'fooDoc.csv'!$C$1000, 1 )

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

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

发布评论

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

评论(1

夜光 2024-12-06 02:29:04

你的公式应该是这样的:

=MATCH( $C$2, fooDoc.csv!$C$2:$C$1000, 1 )

当文件 fooDoc.csv 打开时它工作得很好

顺便说一句,如果文件名中没有空格,引号是无用的

your formula should look like:

=MATCH( $C$2, fooDoc.csv!$C$2:$C$1000, 1 )

it works well when the file fooDoc.csv is open

btw, the quotes are useless if you have no space in the name of the file

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