Afternoon All,
I have a set of data with multiple columns. 2 columns I need to split into rows has a pipe | delimiter. I need to retain the same data in the rows created from the text to column tool. Using the text to column tool on column B works well but when applying the second time on column E this is when I run into problems.
Below is the input / output that I am trying to achieve
Any help will be appreciated.
| Example 1 | | | | |
| Input | | | | |
| A | B | C | D | E |
| 1 | A|B | Start | End | 100|101 |
| Output | | | | |
| 1 | A | Start | End | 100 |
| 1 | B | Start | End | 101 |
| | | | | |
| Example 2 | | | | |
| Input | | | | |
| 1 | A|B|C | Start | End | 100|101|102 |
| Output | | | | |
| 1 | A | Start | End | 100 |
| 1 | B | Start | End | 101 |
| 1 | C | Start | End | 102 |