Splitting data in cells

G

Guest

I'd like to split the content of a cell to an adjacent cell. For instance in
column B there is a list of first name and last name; all found within a
cell. I'd like to split the content so that the first name remains in column
B and the last name is pasted onto column C.

Thanks,
 
G

Guest

Select your column of data and then click DATA in the menu and select TEXT TO
COLUMNS.
 
G

Guest

if first name and second name is separated with a space then type in column B:
=left(A1, find(" ", A1, 1))
and type in column C:
=right(A1, len(A1)-find(" ", A1, 1)).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top