Forum Discussion
SergioDCQ
Nov 20, 2020Copper Contributor
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...
- Nov 20, 2020
It's not necessary to add helper columns, that could be like
=XLOOKUP( Lastname & "=" & Firstname, LastnameColumn & "=" & FirstnameColumn, PhonenumberColumn, "no phone" )
SergioDCQ
Nov 20, 2020Copper Contributor
XLookuo seems right. But how can I search 2 columns i the 1st field (first and,last name)?
SJ_EC
Nov 20, 2020Copper Contributor
Add a new column to the end of both sets of data and type =A2&B2. Replace cell references to match your data. Then use the new column as your lookup reference.