Excel formula for seperating two words in the same cell.

G

Guest

How do I seperate two words in the same cell, seperated by a comma into to
seperate cells. eg. John,Smith (in cell A1) converted to John (in cell B1)
and Smith (in cell C1)?
 
D

Dave Peterson

Select column A and do
Data|Text to columns
Delimited
by comma
and make sure you put the output in column B
 
C

CLR

In cell B1 put =MID(A1,1,FIND(",",A1,1)-1)

In cell C1 put =MID(A1,FIND(",",A1,1)+1,99)

Vaya con Dios,
Chuck, CABGx3
 

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