我有 2 张 Excel 表,每张表都有一个包含匹配数据的列。但是工作表2有一列数据工作表1没有,我需要输入相应的数据工作表2进入工作表1来完成它。
匹配单元格column B
数据工作表2到单元格column B
工作表1。
匹配后,column C
工作表2输入C 栏在工作表1。
第 1 页:
System Supplier Part Number Company Part Number Description
11120 V496-3-405 roller
11130 N554546 wheel
11140 N324560 bushing
11150 N145856 bearing
11160 N123456 castor
11170 4547876 spacer
11180 2000045 switch
etc etc etc
第 2 页:
Company Part Number Supplier Part Number
100235 N123456
100500 N145856
120050 N324560
130500 V496-3-405
160075 2000045
170050 4547876
180050 N554546
etc etc
答案1
您需要使用该功能查找。
句法:VLOOKUP (lookup_value, table_array, col_index_num, [range_lookup])
使用 Vlookup 您可以搜索匹配项并将值放在匹配项同一行的另一个单元格中。
为了使其工作,您需要交换列工作表2所以它应该看起来像这样:
Supplier Part Number Company Part Number
N123456 100235
N145856 100500
N324560 120050
V496-3-405 130500
2000045 160075
4547876 170050
N554546 180050
etc etc
现在,在工作表1C2
您必须放置的单元格: =VLOOKUP(A2,Sheet2!A:B,2,FALSE)
。
A2
它将在范围的第一列中寻找匹配的值,并将该范围的Sheet2!A:B
列内容带入( )。2
Company Part Number
FALSE
意味着它将寻找完全匹配。