Thank you for a great resource! I have combed through the posts on combining data, but could not find one that addressed this issue:
Data set 1 includes fname, lname, and 10 other fields;
<tbody>
</tbody>
Data set 2 has fname, lname, and 4 different fields (not in the other set).
<tbody>
</tbody>
I want to combine the lists so all data from Jane Doe appears in one record.
<tbody>
</tbody>
NOTE: Some names might not be on both lists
I am not that proficient with Excel, but can pick up quickly. Thank you for your help! Karen
Data set 1 includes fname, lname, and 10 other fields;
Fname | Lname | Gender | Race | Data1 | Data2 | Data3 | Data4 | Data5 |
Jane | Doe | F | W | xxx | xx | |||
Sam | Roberts | F | W | xx | xx | |||
John | Jones | M | B | x | x |
<tbody>
</tbody>
Data set 2 has fname, lname, and 4 different fields (not in the other set).
Fname | Lname | Gender | Race | DOB | EventsAttended | Active |
Jane | Doe | M | W | Xx/xx/xxxx | xx | Y |
<tbody>
</tbody>
I want to combine the lists so all data from Jane Doe appears in one record.
Fname | Lname | Gender | Race | Data1 | Data2 | Data3 | Data4 | Data5 | DOB | Active |
Jane | Doe | F | W | xxx | xx | Xx/xx/xxxx | Y | |||
John | Jones | M | B | xx | x | x | x | x | Xx/xx/xxx | N |
<tbody>
</tbody>
NOTE: Some names might not be on both lists
I am not that proficient with Excel, but can pick up quickly. Thank you for your help! Karen