Reputation: 89
I have a list of accounts from one database (Parent Accounts 1) and a list of Parent Accounts from another database (Parent Accounts 2).
I want to find the overlap between the two databases by doing a vlookup on 'Parent' (or maybe i'm doing it ON 'Parent Column'?) but am only successful when it is an exact-ish match i.e. if there are no spaces etc.
This is the Vlookup I'm using:
=VLOOKUP('cell'&"*",'named range','2,false())
Screen Shot for reference:
What I'm trying to figure out are two things:
I've been working on this all day so please excuse my bluntness. Really trying to connect the dots in my head.If someone could explain the value of 'order' and matching one way vs another I'd really appreciate it i.e. what's the difference with this particular VLOOKUP between "doing a VLOOKUP on 'Parent' column" and "doing a VLOOKUP on 'Parent Account' column?
I'd be happy to provide any further detail needed.
Thanks a lot,
M
Upvotes: 1
Views: 910
Reputation: 596
Answer to 1.: The formula is doing exactly what it is designed for (The space is irrelevant).
Answer to 2.: If you switch the look-up value and the look-up table, you'll get the opposite result :
Upvotes: 2