Hello, I have table like this
| ID | JoinKey | Some other detail |
| 2 | ICT3 | foo |
| 3 | ICT3 | foo |
| 4 | ILM1 | foo |
| 5 | ILM2 | foo |
I need to join it with this table
| ID | JoinKey | Value |
| 1 | ICT3 | 20 |
| 2 | ILM1 | 10 |
| 3 | ILM2 | 30 |
| 4 | ICT2 | 50 |
What is the actual result I get:
| ID | JoinKey | Some other detail | Value |
| 2 | ICT3 | foo | 20 |
| 4 | ILM1 | foo | 10 |
| 5 | ILM2 | foo | 30 |
The result I need:
| ID | Joinkey | Some other detail | Value |
| 2 | ICT3 | foo | 20 |
| 3 | ICT3 | foo | 20 |
| 4 | ILM1 | foo | 10 |
| 5 | ILM2 | foo | 30 |
So basically my Join joins only first occurence of the JoinKey but not the others. I use regular Join tool with Join by Specific Fields configuration by JoinKey.
How can I solve this please?