如何使用其他工作表中的数据设置外键?

时间:2019-05-07 15:40:44

标签: excel excel-2010

使用ms-excel时遇到一些问题,因为我想使用其他工作表数据设置外键。我尝试使用vlookup,但它返回#VALUE!

这是我的数据示例:

第1张纸

Key data1   data2
    john    doe
    alex    sanchez
    will    smith

第2张纸

Key data1   data2
1   alex    sanchez
2   john    doe
3   will    smith

我期望的结果:

第1张纸

Key data1   data2
2   john    doe
1   alex    sanchez
3   will    smith

对不起,我的英语不好

1 个答案:

答案 0 :(得分:0)

如果数据1和数据2的组合对于每个键都是唯一的,则可以将2连接起来以创建一个额外的键来回填键值。

=CONCATENATE(B2,C2)