I have a cell containing values that are semi column separated and have a value after the :
How can I split this info into multiple cells?
ID | Locations |
1 | location A:1,Location B:3, Location C:9 |
2 | location A:4,Location B:10, Location C:44 |
I know all Locations, so I can pre-create all needed columns if this would be necessary (beter if it can be done automated of course).
How can I automatically copy the info to the right columns?
So needed output
ID | Location A | Location B | Location C |
1 | 1 | 3 | 9 |
2 | 4 | 10 | 44 |
Any idea how to achieve this?