超级简单的 VLOOKUP 无法按预期检索值

Super simple VLOOKUP cannot retrieve the values as expected

这个看似简单的 vlookup 不起作用,没有在 ColA 中获取指定值 1:

=VLOOKUP(C1,A:B,0,FALSE)

知道哪里出了问题吗?

试试下面的 Index(), Match() 组合。

=INDEX(A:A,MATCH(C1,B:B,0))