Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
表 1
A - F 列中有项目。当它与 F 列中的条件匹配时,如何使用 VLOOKUP 查找行并将其复制到工作表 2?
这是工作表 2 上单元格中的公式: =VLOOKUP(apple,Sheet1!A:F, 2, FALSE)
使用 VLOOKUP() 时,必须在查找范围的第一列中找到查找值。如果不是这种情况,您可以使用 INDEX() 和 MATCH() 的组合
=INDEX(Sheet1!A:F, match("apple", Sheet1!F:F, 0))
或“实际上”重新排列表格的布局(在工作表 1 上),以便预期匹配的列(例如 F 列)是第一列。
=ArrayFormula(VLOOKUP("apple", {Sheet1!F:F, Sheet1!A:F}, {2,3,4,5,6,7}, 0))