I have two tables where the only unique item between the two may be first name and last name. I say "may be" because the tables are from two different sources, and I am trying to find where names from Table A match to names in Table B.
The key to both tables is random sequence assigned by Access.
Table A has 32,678 rows
Key (1,2,3,4,5....)
Last Name
First Name
And lots of other stuff.
Table B has 456 rows
Key (1,2,3,4,5...)
Last Name
First Name
I can't just join on Last Name for obvious reasons. I have tried all combination of joins with varying results; none of which are useful. This should be easy, shouldn't it?
Thank you for your guidance in advance!