excel/google 驱动器中的 vlookup

vlookup in excel/google drive

很抱歉,这是一个非常基本的问题,但出于某种原因,它只是在躲避我。

我正在尝试在 table 中执行 VLOOKUP,但在尝试查找字符串值时总是出现错误。

我在 google 驱动器上创建了问题以帮助说明我的意思 https://docs.google.com/spreadsheets/d/1L70yQeWmr0J08UwK3nkSQaLNVFzfI1zi8euzhoYq8XY/edit?usp=sharing

问候

VLOOKUP function is intended to return a value that is to the right of the look up value. To reverse this, use a INDEX/MATCH 函数对。

=index(A:A, match("Danton", B:B, 0))

顺便说一句,如果在 range_lookup 参数中使用 TRUE(或省略),则需要对查找列进行排序。