I want to seperate two words in same cell to be in two diffrent ce

O

oasalako1

Hi,
Kindly help.. I need to seperate two letters in same cell into two different
cells

e.g Cell A1: 5000030 Salary

I need it to be
Cell A1: 5000030
Cell A2: Salary

Please, how do I do this, can anyone help?

Thank you
OluD
 
P

Peo Sjoblom

Why don't you use a help column and for instance B1 put


=LEFT(A1,FIND(" ",A1)-1)

in B2


=TRIM(SUBSTITUTE(A1,D1,""))


then when you are done with all values copy and paste special as values
and finally delete column A


You can also select column A, do data>text to columns and select delimited
and in the next step select space. That will split the cell but it would be
in column B

--


Regards,


Peo Sjoblom
 

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