Forum Discussion

SergioDCQ's avatar
SergioDCQ
Copper Contributor
Nov 20, 2020
Solved

Am looking to "merge" two excel spreadsheets

I have two spreadsheets.  The one thing they both have in common is they both have: Lastname and Firstname    But only one has Telephone and email addresses.  And of course, some of them are mis...
  • SergeiBaklan's avatar
    Nov 20, 2020

    SergioDCQ 

    It's not necessary to add helper columns, that could be like

    =XLOOKUP(
      Lastname & "=" & Firstname,
      LastnameColumn & "=" & FirstnameColumn,
      PhonenumberColumn,
      "no phone"
    )
    

Resources