vlookup的sytax
vlookup(value we are looking for, Data range, index, exact/aprrox. match)
即vlookup(A1,B1:E3,1,false)
vlookup将是第一列,用于查找单元格A1中所需的值。
但如果我使用相同的数据范围,我希望它在第3列中搜索我的值“A1”,它应该返回第一列中的值。
清除我的问题的例子
A B c D E
1 22 area 3 4 5
2 length 2 22 2
3 height 4 32 7
在上面的数据中我想要excel来搜索D列中的“22”,并在B列中返回与它相反的值,即“长度”
答案 0 :(得分:0)
试试这个
=INDEX(B1:B3,MATCH(A1,D1:D3,0))
回复评论时,在横向广告中使用Index
Match
:
假设您的数据是这样的
A B C D
1 22 area length height
2 3 2 4
3 4 22 32
4 5 2 7
要获得与原始数据相同的结果,请使用
=INDEX(B1:D1,MATCH(A1,B3:D3,0))