I have two tables with the same columns. Each table has a "name" column (unique key basically) and two amount columns.
Each name may appear in either or both table.
What I want to do is align them up so that each instance of the same name appears side by side.
Example:
If the "input" is
Table 1:
Name Amount1 Amount2
Field A 1 2
Field B 3 4
Field C 5 6
Table 2
Name Amount1 Amount2
Field B 7 8
Field D 9 10
Then the "output" would be:
Name Amount1 Amount2 Name Amount1 Amount2
Field A 1 2
Field B 3 4 Field B 7 8
Field C 5 6
Field D 9 10
Is there any way of doing this in Excel (short of writing a macro)?