Arrangement of text in a cell

  • Thread starter Thread starter brettg
  • Start date Start date
B

brettg

I have text in a cell of my spread sheet. It has last name then first
name. Is there a way to re-arrange this so the first name appears
first??

Brett
 
If they are separated by a space:

=RIGHT(A1,LEN(A1)-FIND(" ",A1))&" "&LEFT(A1,FIND(" ",A1))

--
Kind regards,

Niek Otten

|
| I have text in a cell of my spread sheet. It has last name then first
| name. Is there a way to re-arrange this so the first name appears
| first??
|
| Brett
|
|
| --
| brettg
| ------------------------------------------------------------------------
| brettg's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=33879
| View this thread: http://www.excelforum.com/showthread.php?threadid=536583
|
 

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