dixiebritt
Board Regular
- Joined
- Jan 8, 2014
- Messages
- 63
I have 2 spreadsheets. One spreadsheet has the following:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Last Name[/TD]
[TD]First Name[/TD]
[TD]Social[/TD]
[/TR]
[TR]
[TD]Doe[/TD]
[TD]Jane[/TD]
[TD]123-45-6789[/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]John[/TD]
[TD]111-11-1111[/TD]
[/TR]
[TR]
[TD]Appleseed[/TD]
[TD]John[/TD]
[TD]555-55-5555[/TD]
[/TR]
</tbody>[/TABLE]
And another Spreadsheet has a list of names (all in DB) with their address.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Last Name[/TD]
[TD]First Name[/TD]
[TD]Address[/TD]
[TD]City[/TD]
[TD]St[/TD]
[TD]Zip[/TD]
[/TR]
[TR]
[TD]Doe[/TD]
[TD]Jane[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Doubtfire[/TD]
[TD]Laura[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]John[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Appleton[/TD]
[TD]Tammy[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Appleseed[/TD]
[TD]John[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I am needing a way to merge the 2nd table to the first table, only bringing the data for those who have "matching last and first names). There are thousands of lines of data, so hoping there is a way of doing this a bit more simply than manually going through each.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Last Name[/TD]
[TD]First Name[/TD]
[TD]Social[/TD]
[/TR]
[TR]
[TD]Doe[/TD]
[TD]Jane[/TD]
[TD]123-45-6789[/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]John[/TD]
[TD]111-11-1111[/TD]
[/TR]
[TR]
[TD]Appleseed[/TD]
[TD]John[/TD]
[TD]555-55-5555[/TD]
[/TR]
</tbody>[/TABLE]
And another Spreadsheet has a list of names (all in DB) with their address.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Last Name[/TD]
[TD]First Name[/TD]
[TD]Address[/TD]
[TD]City[/TD]
[TD]St[/TD]
[TD]Zip[/TD]
[/TR]
[TR]
[TD]Doe[/TD]
[TD]Jane[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Doubtfire[/TD]
[TD]Laura[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]John[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Appleton[/TD]
[TD]Tammy[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Appleseed[/TD]
[TD]John[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I am needing a way to merge the 2nd table to the first table, only bringing the data for those who have "matching last and first names). There are thousands of lines of data, so hoping there is a way of doing this a bit more simply than manually going through each.