Concatenate

  • Thread starter Thread starter naja
  • Start date Start date
N

naja

I have a column that has last name and first name, how can i separate them so
that only the last name shows up or vice verse that the first name shows up.

thanks
 
Hi,

Assuming they are seperated by a space try this.

First name

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

Last name

=TRIM(MID(A1,FIND(" ",A1,1),LEN(A1)))

Mike
 
Hi,

Select the names and choose Data, Text to Columns, Delimited, click Next,
check Space, click Next, in the Preview area pick the column you don't want
and then click the Skip option.
 

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