0

我有两个excel包含这些数据的文件:

文件1:

Name --------------  Code
John                 12345
Dave                 54321
Maria                98765
Cole                 68596

and .... (1000 name and code)

文件 2:(文件 1 的代码值)

Code ------------     address
12345               test address
54321               test address
98765               test address
68596               test address

and .... (1000 name and address)

现在我需要为 show 创建一个文件code / name / address。如何生成这个?如何excel/(or any method)替换相似代码的自动数据值。我需要这个文件:

code------------------    name--------------   address
12345                     John                test address
54321                     Dave                test address
98765                     Maria               test address
68596                     Cole                test address

NOTE: code similar in two file.

4

1 回答 1

0

我不是办公产品的专业用户,但:

在文件 1 中,假设名称在 A 列中,代码在 B 列中,在单元格 C2 中键入:

=VLOOKUP(B2,'[File2name.xls]Sheet1'!A:B,2,0)'

笔记:change File2name to the respective file name, and Sheet1 to the worksheet's name if necessary

并将公式复制下来。完成后,复制 C 列,右键单击 C 列,然后单击选择性粘贴,选择值并单击确定。完成后,根据需要重新排列列。

于 2013-09-17T10:55:25.393 回答