alexfwalker81
Member
- Local time
- Yesterday, 18:20
- Joined
- Feb 26, 2016
- Messages
- 107
I have a table which has the following structure, where the Data column has pipe separated values which I need to separate into individual rows;
Plus many more rows...
This is what I need to get to, where the pipe separated values exist on a single row, associated with their SKU.
It's a job I only need to do once, so the solution doesn't need to be especially elegant! If there's an Excel solution that I've overlooked then I'm perfectly open to that as well.
Thanks in advance for any help.
SKU | Data | |
| 105674|130351|14398|14421|19183|19184|19894|3692 | |
| 17816|17817|17818|19303|21092 |
This is what I need to get to, where the pipe separated values exist on a single row, associated with their SKU.
SKU | Data | |
| 105674 | |
| 130351 | |
| 14398 | |
| 14421 | |
| 19183 | |
| 19184 | |
| 19894 | |
| 3692 | |
| 17816 | |
| 17817 | |
| 17818 | |
| 19303 | |
| 21092 |
It's a job I only need to do once, so the solution doesn't need to be especially elegant! If there's an Excel solution that I've overlooked then I'm perfectly open to that as well.
Thanks in advance for any help.