Excel公式 - 偏移+索引和匹配

时间:2017-06-02 18:16:21

标签: excel indexing excel-formula match offset

=OFFSET(INDEX('File Location]File Name'!$A:$P, MATCH(D915,'File Location]File Name'!$A:$A,0),5),3,0)

我有上面的代码。但是,当我尝试它时,我得到#VALUE!除非我打开它正在索引的文件。我在整个公式上尝试了“Ctrl + Shift + Enter”,但是这不起作用,我收到一条错误消息,当我尝试自己插入时,大括号的新公式是不正确的。

有没有办法使用Offset + Index,Match?

1 个答案:

答案 0 :(得分:0)

尝试不使用OFFSET,只需将3添加到MATCH的返回:

INDEX('File Location]File Name'!$A:$P, MATCH(D915,'File Location]File Name'!$A:$A,0)+3,5)