VLOOKUP Help

Rusbus1972

New Member
Joined
Jul 15, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello, I have separate exported lists of employee IDs for employees assigned to them. I need to compare the two lists and identify if any of the names associated with the IDs are spelled differently between the two lists. The lists do not have an identical number of IDs and employee names. I'm only concerned with the Ids that appear on both lists. The goal is to identify which IDs appear on both lists that have the associated names that are spelled differently between the two.
1721063726951.png



Im assuming VLOOKUP is what would be used to identify the different spelling but im not able to get the syntax of the VLOOKUP down correctly. So in the example above the formula should return that result that highlights that Row 4 has names in Colum B and E that does not match.

Any help would be apprecaited.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
=countifs() maybe

how about
=IF(COUNTIF($A$2:$A$100,E2)=0,"",COUNTIF($A$2:$A$100,E2)=COUNTIFS($A$2:$A$100,E2,$B$2:$B$100,F2))

Book5
ABCDEFG
1
21234blow,joe1234blow,joeTRUE
31235flinstone, fred1237 
41236smith, billy1235flinstone, fredTRUE
51230 
61236smith, williamFALSE
Sheet1
Cell Formulas
RangeFormula
G2:G6G2=IF(COUNTIF($A$2:$A$100,D2)=0,"",COUNTIF($A$2:$A$100,D2)=COUNTIFS($A$2:$A$100,D2,$B$2:$B$100,E2))


Could add a IF , so you dont just get a FALSE _ BUT maybe an error - or even lookup the names for comparison
 
Upvote 0
Solution
glad to have resolved for you
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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