Comparing two columns in one Excel sheet, to two columns in another sheet, and if they match, copy data from another column

后端 未结 4 1625
死守一世寂寞
死守一世寂寞 2021-01-29 09:27

I\'ve been looking at using the Excel VLOOKUP function to accomplish this, but I\'m pretty unfamiliar with it.

I need to do the following:

On sheet one, column A

4条回答
  •  误落风尘
    2021-01-29 09:59

    =IF(AND(Sheet1.A1=Sheet2.A1, Sheet1.B1=Sheet2.B1),Sheet2.C1,'')
    

    Save this as formula to the Column C of the target sheet.

提交回复
热议问题