I want to match first and last names which are in separate columns and in separate sheets in an excel file. Below is the sample of data:
Sheet 1:
First Name Last Name
Kevin Durant
Micheal Jordan
Sheet 2:
First Name Last Name
Mike Ashley
Kevin Durant
In the output, I need to get those first and last names which are in Sheet-2 but not in Sheet-1. I did the research and found this vlookup formula but I have not implemented it since I could not understand how to modify it:
=VLOOKUP(A2,'Names-2'!$A$2:$A$19,1,FALSE)
I found it from this link:vlookup
Any help would be great for me to understand vlookups. Thank you
Michael
on sheet 1 andMike
on sheet 2 actually different? For text, you will need exact matches (not case sensitive) – urdearboyKevin Durant
in this case? – Sangbok Lee