nyconfidential
New Member
- Joined
- Jul 22, 2015
- Messages
- 49
- Office Version
- 365
- 2016
Hi all - I have a delimited string of numbers/letters in one cell that I am trying to transpose into another set of cells(the string could be something like "A, B, 179, C")
Normally I would just use the split function in VBA, break this into an array and assign each cell I want to insert into the array index value, but I am not allowed to do this in case(has to be done via formula, no code).
So, is there is a simple way to take a string like ""A, B, 179, C" and assign each value to a cell via a formula? This is what I want the cells to look like:
A1 - "A"
A2 - "B"
A3 - "179"
A4 - "C"
Thanks!
Normally I would just use the split function in VBA, break this into an array and assign each cell I want to insert into the array index value, but I am not allowed to do this in case(has to be done via formula, no code).
So, is there is a simple way to take a string like ""A, B, 179, C" and assign each value to a cell via a formula? This is what I want the cells to look like:
A1 - "A"
A2 - "B"
A3 - "179"
A4 - "C"
Thanks!
Last edited: