Hi Alteryx Team,
How do I add my current column data to the previous column, if the current column has the first 3 letters words to left as ABC. If the current column doesn't have the words ABC it remains the same.
Eg: my input :
| Test |
| Team-3(DGF:1234 |
| ABC:546) |
| Team4(DGF:789) |
| Group-88(GH-6897) |
My Output : I also want to split that which in brackets to be separate column.
| Test | 1 | 2 |
| Team-3(DGF:1234 ABC:546) | Team-3 | DGF-1234 ABC:546 |
| Team4(DGF:789) | Team4 | DGF:789 |
| Group-88(GH-6897) | Group-88 | GH-6897 |