I am familiar with the one cell into multiple columns feature when it comes to simple text. I have about 250 rows, where each row has a non-uniform number of list items in one cell. Some cells have as little as one list item, others have five. I need columns to be populated with each list item, separately. The columns are "First Item", "Second Item" etc. The items in the lists are non-uniform length strings.
Basically need a cell that says something like this "1. I have a dog 5. Cat 8. Today is Sunny", to have Column 1 say "1. I have a dog", Column 2 say "5. Cat", Column 3 say "8. Today is Sunny". Then process that for 250 rows.
This is some VBA I've tried, but it doesn't do anything.
Sub test()
Dim text As String
Dim a As Integer
Dim name As Variant
text = ActiveCell.Value
name = Split(text, "##.")
End Sub