Hi everyone! I have a single cell with contains a concatenated bunch of values.
It looks like this
The concatenate is variable and changes a lot in size so it cant really be hardcoded
Im trying to make it trim these words out using "-" delimiter.
End goal is to make this split into one column range where it spills down one row for each word delimited.
EG:
It looks like this
Excel Formula:
Orange-Blue-Green-Pink-Yellow-Green3-Cyan-Majenta-Brown-White-Aqua-Black
Im trying to make it trim these words out using "-" delimiter.
End goal is to make this split into one column range where it spills down one row for each word delimited.
EG:
Book1 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | |||
1 | Orange-Blue-Green-Pink-Yellow-Green3-Cyan-Majenta-Brown-White-Aqua-Black | |||||||||
2 | ||||||||||
3 | Result: | Orange | ||||||||
4 | Blue | |||||||||
5 | Green | |||||||||
6 | Pink | |||||||||
7 | Yellow | |||||||||
8 | Green3 | |||||||||
9 | Cyan | |||||||||
10 | Majenta | |||||||||
11 | Brown | |||||||||
12 | White | |||||||||
13 | Aqua | |||||||||
14 | Black | |||||||||
Sheet1 |