How to compare two columns in Excel and copy the corresponding value in the next column

后端 未结 1 1772
有刺的猬
有刺的猬 2021-01-24 07:16

I have 3 columns in my Excel list. Column A contains \"computer names\", column C contains \"Computer names\" and column D contains \"IP addresses\". I want to compare data in c

相关标签:
1条回答
  • 2021-01-24 07:32

    Use VLOOKUP

    Example in cell B1:

    =VLOOKUP(A1,C1:D4,2, FALSE)
    

    where C1:D4 is the table that contains computer names and their corresponding IP addresses.

    0 讨论(0)
提交回复
热议问题