Hi
I have 2 tables. The second table is missing some names from the first table. What I want to do, is to find these names that are in table1 but not table2 and bring them to table2 and also bring the other missing columns like Dept, Age, Salary. How can I do that? Thank you very much. Please see tables below
I have 2 tables. The second table is missing some names from the first table. What I want to do, is to find these names that are in table1 but not table2 and bring them to table2 and also bring the other missing columns like Dept, Age, Salary. How can I do that? Thank you very much. Please see tables below
Book1 | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | Name | Dept | Age | Salary | ||
2 | Mary1 | HR | 1 | 10 | ||
3 | Mary2 | IT | 2 | 20 | ||
4 | Mary3 | Sales | 3 | 30 | ||
5 | Mary4 | Marketing | 4 | 40 | ||
6 | Mary5 | HR | 5 | 50 | ||
7 | Mary6 | IT | 6 | 60 | ||
8 | Mary7 | Sales | 7 | 70 | ||
9 | Mary8 | Marketing | 8 | 80 | ||
10 | Mary9 | HR | 9 | 90 | ||
11 | ||||||
12 | ||||||
13 | ||||||
14 | Name | Dept | Age | Salary | ||
15 | Mary1 | HR | 1 | 10 | ||
16 | Mary3 | Sales | 3 | 30 | ||
17 | Mary10 | HR | 9 | 90 | ||
Sheet1 |