searching a range

  • Thread starter Thread starter Rich Cooper
  • Start date Start date
R

Rich Cooper

this is similar to my previous question. I have a range of names. I want
to search it for a space and put the part before the space in a new range
and everything after the space in a range right next to the one containing
the first part. I have tried the search function but i can not get it to
work. Please Help.
 
Hi
a formula solution:
B1:
=LEFT(A1,FIND(" ",A1)-1)

C1:
=MID(A1,FIND(" ",A1)+1,255)
 

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

Back
Top