Hi Guys,
I have a need to prepare some data.
I need to map data from key branches to a target branch ID (the target needs to have this data registered against them).
The problem is that the column containing the source branch(es) is surrounded in useless text that I need to do away with.
An example of this is attached, however for this I'll show below:
target | source branch
2673 ---- :branch_code:
:target_branch_code:
- '12'
- '402'
:target_retailer_id: 1528
What I need is a column that gives me the target_branch_code numbers. Everything else can be removed.
How would I go about doing this, so that the output would be:
target | source branch
2673 12,402
Cheers!