
We are going to join the list so that it becomes comma delimited and then use hotkeys to run the text to column filters on the active cell.
The join text is:

The Send Keys for text to columns by comma (assuming your default is tab, is)

NOTICE THE 100 ON "DELAY BETWEEN KEY STROKES": it slows it down just enough that it won't trample over itself.
Here is the text for send keys, so you don't have to write it: {LMenu}()azde{Return}{LMenu}(t){LMenu}(c){Return}{Return}
If you are doing a loop (multiple rows), you only need "{LMenu}(t){LMenu}(c)" part the first time. After that, comma will be the default text to columns until you close excel completely. The other option is, you paste all the rows in column A, and then do the send keys for text to columns one time by selection all rows needed in column A first.
Best of luck!