Hello together,
i have a problem with uniting 2 data sets and removing duplicates.
1. So i have Dataset 1 which i want to keep in the union list. I ALSO want to keep the duplicates from this list.
| ID | Name | Attribut |
| 12287 | Carbroker | AB |
| 263258 | ASI | AB |
| 222872 | ASI | AC |
| 77195 | HR-Services | AA |
| 258228 | ASO Europe | AB |
| 291141 | Asip Switzerland | AB |
| 256275 | Northman ltd. | AA |
| 256276 | Northman ltd. | AB |
2. I have the second dataset which look like this:
| ID | Name | Attribut |
| 192782 | Bungee | AB |
| 123213 | Dental Services | AB |
| 258228 | ASO Europe | AA |
| 258228 | ASO Europe | AB |
| 258228 | ASO Europe | AC |
| 13123 | Ganza ldt | AB |
| 136275 | Pickermann | AA |
| 256276 | Northman ltd. | AC |
If the Name is already contained in Dataset 1 then i want to remove all of them in Dataset 2. Just keep in mind that the other collumns can have other attributes and i need the rows from dataset 1.
The solution should look like:
| ID | Name | Attribut |
| 12287 | Carbroker | AB |
| 263258 | ASI | AB |
| 222872 | ASI | AC |
| 77195 | HR-Services | AA |
| 258228 | ASO Europe | AB |
| 291141 | Asip Switzerland | AB |
| 256275 | Northman ltd. | AA |
| 256276 | Northman ltd. | AB |
| 192782 | Bungee | AB |
| 123213 | Dental Services | AB |
| 13123 | Ganza ldt | AB |
| 136275 | Pickermann | AA |
I tried the joining tool the union tool, but i cant figure it out somehow.
Thank you in advance
Alfred