vlookup

tsh1586

New Member
Joined
Jan 8, 2019
Messages
15
Hello All,
I am looking to match the last name and the first letter of the first name for my employees and return the name as listed on another sheet based on the partial match.
So on my first sheet ListBill I have the names listed as last name, first name and middle initial in column L. Column A of this worksheet has the last name and Column B of that sheet contains the First Name and Middle Initial. Column L is the combining of those two columns.
Second Sheet named ADP is data pulled from another program it contains the last name, first name and middle initial in column A. The problem is the last name, first name middle initial from one sheet doesn't exactly match the second sheet. I am needing a formula that matches the ADP column A (first name last name middle initial) with the column L in the ListBill worksheet (combined last name first name and middle initial). I am currently using the Vlookup to match but am not using the false criteria for perfect match thus if there are multiple employees with the same last name it is returning the first one it comes to. I want to match the last name, and the first initial of the first name.
Does anyone have a solution?
I am currently using the formula below which would work great if there was not duplicates
=VLOOKUP(A2,ListBill!$A$39:$L$426,12)
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Just a thought, not saying I can fix this, there are no salutations, like Mr, Mrs, Col, etc ? Or if there are they are stored in a cell away from the last name/first name values ?
 
Upvote 0
Hi,

Can you show some sample data?
 
Upvote 0
my copy and paste will not work I tried using the HTML Maker but gives a bunch of stuff not in columns like it use to be

Excel 2013/2016
ABCDEFGHIJKLMNOPQRSTUV
39BAHNWEGNICHOLAS Jxxxxxxx79721IT DIV1AD&DMember only$ 1.4050000BAHNWEG,NICHOLAS JAD&DMember onlyAD&DBAHNWEG,NICHOLAS J-AD&D$ 1.40$ -$ 1.40$ -$ 1.40$ -$ -
ListBill
Cell Formulas
RangeFormula
L39=A39&","&B39
M39=G39&H39
N39=VLOOKUP(M39,Vlookup!$C$2:$D$14,2,FALSE)
O39=L39&"-"&N39
P39=IFERROR(VLOOKUP(O39,ADP!$R$2:$S$347,2,FALSE),"0")
Q39=IF((OR(E39="ABC",P39="0")),0,IFERROR(VLOOKUP($O39,ADP!$R$1:$U$347,3,FALSE),""))
R39=IF((OR(E39="ABC",P39="0")),0,IFERROR(VLOOKUP($O39,ADP!$R$1:$U$347,4,FALSE),""))
S39=IF(E39="ABC",I39,0)
T39=Q39+R39
U39=P39-T39
V39=I39-P39-S39


The second Sheet the following is the top line

Excel 2013/2016
ABCDEFGHIJKLMNOPQRSTU
2Bahnweg, NicholasBAHNWEG,NICHOLAS JActiveIT DivisionAD&DMetropolitan Life Ins CoAD&DEnrolled04/01/2018$50,000.00$0.00Monthly$1.40MonthlyAD&DBAHNWEG,NICHOLAS J-AD&D1.40$0.00$1.40
ADP
Cell Formulas
RangeFormula
B2=VLOOKUP(A2,ListBill!$A$39:$L$426,12)
Q2=TRIM(H2)
R2=B2&"-"&Q2
S2=O2+M2
T2=M2
U2=O2
 
Upvote 0
See if this helps you:

1. Change your ListBill Sheet L39 formula to include a Space after the comma, like this:

=A39&", "&B39

2. Use this formula in B2 of the ADP Sheet:

=LOOKUP(2,1/SEARCH(A2,ListBill!$L$39:$L$426),ListBill!$L$39:$L$426)

This matches the Entire name as shown in ADP A2 to ListBill Column L with or without the middle initial.
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,252
Members
452,623
Latest member
Techenthusiast

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top