Merge two Excel tables Based on matching data in Columns

前端 未结 2 1286
野的像风
野的像风 2020-12-08 07:41

I\'ve been working on a excel problem, that I need to find an answer for I\'ll explain it below.

I\'ve Table01 with the Columns :

  • Group No
  • Nam
2条回答
  •  半阙折子戏
    2020-12-08 08:36

    Put the table in the second image on Sheet2, columns D to F.

    In Sheet1, cell D2 use the formula

    =iferror(vlookup($A2,Sheet2!$D$1:$F$100,column(A1),false),"")
    

    copy across and down.

    Edit: here is a picture. The data is in two sheets. On Sheet1, enter the formula into cell D2. Then copy the formula across to F2 and then down as many rows as you need.

    enter image description here

提交回复
热议问题