【发布时间】:2020-09-09 22:05:11
【问题描述】:
我正在尝试构建一个 Excel 表,并且我想检索与 G 和 I 列(Comedor 和索引)中的条件匹配的 J 列(Salida)中的值。 :
为了实现这个目标,我在单元格 K17 中使用了这个公式;
=vLOOKUP(concatenate(G17;I17); G7:J; 4; FALSE)
让我们一步一步来看看我得到了什么:
=CONCATENATE(G17;I17) // This gives me "A1" as String
=Type(G17) returns 2 //String
=Type(I17) returns 2 //String
G7:J // the complete range where my criteria columns are in first positions
4 // The column index starting from the beginning of the range (Salida)
False // Exact match
我收到的错误是在 VLOOKUP 评估中找不到“A1”,但我不知道发生了什么。任何帮助将不胜感激。
【问题讨论】:
标签: arrays google-sheets match vlookup array-formulas