Hi,
I'm looking to concat the contect of 2 cells based on the unique identifier to create a new field without changing the structure of the data:
Input:
| ID | Type | Name |
| 1 | Enabler | apples |
| 2 | Dependent | wine |
| 1 | Dependent | juice |
| 3 | Dependent | chips |
| 3 | Enabler | potatoes |
| 2 | Enabler | grapes |
Desired output:
| ID | Type | Name | Concatenated field |
| 1 | Enabler | apple | apple juice |
| 2 | Dependent | wine | grape wine |
| 1 | Dependent | juice | apple juice |
| 3 | Dependent | chips | potato chips |
| 3 | Enabler | potato | potato chips |
| 2 | Enabler | grape | grape wine |
Thanks