Whenever the word "imported" is mentioned, there is always the possibility
of additional, invisible characters being included within that imported
data.
I would start off by checking the length of the I and J columns using,
=Len(I2)
=Len(J2)
And comparing the results to a visual count.
Do they all match?
BTW ... when you receive a return of the name from the row above the correct
name, does the formula you used call for approximate matches (ends in 1 or
TRUE)?
--
Regards,
RD
-----------------------------------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit !
-----------------------------------------------------------------------------------------------
First off, I'm sorry for the confusion. I am under a time crunch, and
figured that it was probably a stupid mistake on my part that would be
easily
resolved. It's still gonna be a stupid mistake on my part but. I am new to
posting questions and I am not for sure what may or may not be pertinent
information. That being said, here we go.
My data is exported from a Sage Software. Basically it is detailed
directory of people that meet certain criteria. Some meet more than one so
they are listed more than once. The data contains an ID number, last name,
first name, Address, etc. I have another list that was exported from
InfoPoint. It has basically the same info EXCEPT, it has an Account Number
instead of ID and only includes unique records. I need both the Account and
ID numbers in one spreadsheet. The only thing that I knew to reference is
full name, which is in 2 separate columns. So I combined the 2 columns by
way of: =I2&" "&J2 for both lists. Then on one of the lists I am
adding a column with the lookup formula to lookup the ID number based on
name. I have tried:
=VLOOKUP(H2,Sheet1!A1:G19677,5)
=VLOOKUP(H2,Sheet1!A1:G19677,5,0)
=VLOOKUP(H2,Sheet1!A1:G19677,5,1)
=VLOOKUP(H2,Sheet1!A1:G19677,5,FALSE)
=VLOOKUP(H2,Sheet1!A1:G19677,5,TRUE)
=INDEX(Sheet1!F2:F19677,MATCH(H3,Sheet1!B2:B19677,1))
All of which result in either #N/A or the ID number of the person in the row
just above who I need.
I hope this is clear and not too long but I'm simple minded and had to
explain it to myself several times during this explanation. Thanks.