Way to go, bearjam! One of my favorite unknown Excel features!
Data/TextToColumns has some other not-at-all-obvious uses as well. For example, if you've ever had a column of numbers that don't add up correctly because some of the cells are text (even though they LOOK like numbers), Data/TextToColumns can fix the whole column in a flash!
Just hilite the column or part of the column, select Data/TextToColumns, accept all the defaults, and Viola. Fixed!
I use it so much that I made a simple one-line macro and added a button to my button-bar.
Sub TextToNumbers()
Selection.TextToColumns
''' ALL Defaults acceptable.
End Sub