How to split Cell content into two resulting cells

G

Guest

How do i split the content of a cell into two resulting cells without
splitting any words.

I have a cell with 32 characters and I want to slip this and copy it into
two resulting cells without splitting any words in the cell
 
G

Guest

Assuming your phrase is in A1 and that there is a space between two of the
words, this will split after the 1st word.
=LEFT(A1,FIND(" ",A1)-1)
and for the other half
=RIGHT(A1,LEN(A1)-FIND(" ",A1))
 

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