I have a column, Column1, of block id numbers.
I have another column, Column2, of block id numbers.
The two columns don't completely match. There are fewer rows in Column2 than there are in Column1. Some numbers in Column2 aren't in Column1 and vice versa.
I want to match these columns. There are also other columns which correspond with Column1 that I want to "follow" Column1 when it matches to Column2. After the matching, I expect a lot of values from Column1 to be unmatched.
How can I match them this way? I want Column1 and Column2 to match and the other columns associated with Column1 to follow it when it matches to Column2.
Edit: For Example:
This is what I have right now:
Column1....Column2....Column3....Column4
......4................4...............B................Pie
......5................7...............C................Cake
......6................8...............Z................Cookie
......8................11.............G................Marsh
......11...............................D................Sky
......12...............................E................Le
This is what I want:
Column1....Column2....Column3....Column4
......4................4...............B................Pie
......5.................................C................Cake
......6.................................Z................Cookie
......8................8...............G................Marsh
......11..............11.............D................Sky
......12...............................E................Le
........................7..................................
So Column1 matches Column2, Column3 and Column4 "stay" with Column1, and any mismatches are given their own row or something. Note that Column2 is the only one that "moves". A simple sort will not do because Column2 has fewer entries than Column1 and some numbers in Column2 are not in Column1.
Does that help? Sorry for any confusion. Thank you for any help.