比如sheet1中有
A\B两列,
A B
1
4
5
2
3
sheet2
A B
1 10
2 20
3 50
4 30
5 40
sheet1 A列中的值和sheet2中A列中的值比较,如果sheet2中有sheet1的A列的值,把sheet2中A列对应行的B列的值取到sheet1的B列中
例如结果sheet1中
A B
1 10
4 30
5 40
2 20
3 50
------解决方案--------------------------------------------------------
=VLOOKUP(A2,sheet2!A:B,2,)
------解决方案--------------------------------------------------------
Sheet1的B1单元格:
B1=VLOOKUP(A1,Sheet2!A:B,2,0)
选中B1,拖到第五行。
结果:
A B
1 10
4 30
5 40
2 20
3 50