Spilting a column

Z

Zack

I am trying to merge mailing spreadsheets, and the one I am building has
first name & last name columns, but my issue is that many of the other
spreadsheets have only one column for a name (smith, bob). Is there a way to
create a method to use the comma in between the "smith, bob" to separate the
data into 2 columns?
 
S

Sheeloo

To get smith use =LEFT(C6,FIND(",",C6)-1)
and to get bob use =RIGHT(C6,FIND(",",C6)-3)

assuming C6 has smith, bob
 
Z

Zack

The last name worked, but I still can not get the first name column to
generate. Here is an example of the cell I am working with:
AARON, JERRY L.
 
D

David Biddulph

I think the answer intended may have been something like
=RIGHT(C6,LEN(C6)-FIND(",",C6)-1)
 
S

Sheeloo

Thanks David,

Yes, that was the intent.

Data>Text to Columns>Comma delimited
is a better solution.
 

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