Reputation: 25
For example:
+-------+------+-----------+
| shoes | hats | umbrellas |
+-------+------+-----------+
I could use a different formula in each cell to accomplish this. Whatever the case, I need this to be done using a formula. Thank you all in advance.
Upvotes: 1
Views: 4389
Reputation:
With shoes, hats, umbrellas, towels, disks in A2, put this into a column to the right.
=TRIM(MID(SUBSTITUTE($A2, ",", REPT(" ", 999)), (COLUMN(A:A)-1)*999+1, 999))
Fill right for a total of three columns then fill down as necessary.
Upvotes: 1