I don't know of a simple way without adding a special function into your sheet. Here's a User-Defined Function (UDF) that will do it for you.
==========
How to install the User Defined Function:
1. Open up your workbook
2. Get into VB Editor (Press Alt+F11)
3. Insert a new module (Insert > Module)
4. Copy and Paste in your code (given above)
5. Get out of VBA (Press Alt+Q)
6. Save your sheet
The function is installed and ready to use.
=========
If the string were in A1, then put this formula in an adjacent cell:
=NAMESPLIT(A1, ", ")
The first parameter is the cell
The second parameter is the text string you've chose to split the names.
Bookmarks