Select the column with the names
Data|Text to columns
Delimited
by comma
and plop the results into the two adjacent columns.
Make sure you have room so you don't overwrite the adjacent data.
--
Dave Peterson
Another way is to use formulas to parse the names into two other columns. If
the first combined name is in A2, for example, enter this formula in B2:
=TRIM(LEFT(A2,FIND(",",A2)-1)
and this formula in C2:
=TRIM(RIGHT(A2,LEN(A2)-FIND(",",A2)))
Copy both formulas down through all rows of data, then copy & paste in place
as values.
Hope this helps,
Hutch