Hello, I need to extract what is in B2 to reorganize only information to the right and one space ahead of each "X". Example below.
Any help is much appreciated!
Sample data:
Desired output:
Any help is much appreciated!
Sample data:
Book1 | ||||
---|---|---|---|---|
A | B | |||
1 | Order# | Item | ||
2 | 12345 | 2X ABC 3X 123 1X Apple 6X Banana 9X Dog | ||
Sheet1 |
Desired output:
Book1 | ||||
---|---|---|---|---|
A | B | |||
1 | Order # | Item | ||
2 | 12345 | ABC | ||
3 | 12345 | 123 | ||
4 | 12345 | Apple | ||
5 | 12345 | Banana | ||
6 | 12345 | Dog | ||
Sheet2 |