Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 139
Default Converting Text Format from LAST NAME, First Name to First Name La

I have imported data from another program and all of the names are in this
format: Last Name, First Name

How can I change to First Name Last Name???
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Converting Text Format from LAST NAME, First Name to First Name La

You can use this to swap names around:
=MID(A2,FIND(",",A2)+2,256)&" "&LEFT(A2,FIND(",",A2)-1)
Then copy, paste special- values.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Tina" wrote:

I have imported data from another program and all of the names are in this
format: Last Name, First Name

How can I change to First Name Last Name???

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 60
Default Converting Text Format from LAST NAME, First Name to First Name La

With
A1: The Clown, Bozo

This formula converts that text to FirstName LastName
B1: =TRIM(MID(A1&" "&A1,FIND(",",A1&" "&A1)+1,LEN(A1)))

Is that something you can work with?

Regards,

Ron Coderre
Microsoft MVP (Excel)

"Tina" wrote in message
...
I have imported data from another program and all of the names are in this
format: Last Name, First Name

How can I change to First Name Last Name???


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 60
Default Converting Text Format from LAST NAME, First Name to First Name La

Actually made that formula more complicated than it needed to be.
Try this:
B1: =TRIM(MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1)))

Does that help?

Regards,

Ron Coderre
Microsoft MVP (Excel)

"Ron Coderre" wrote in message
...
With
A1: The Clown, Bozo

This formula converts that text to FirstName LastName
B1: =TRIM(MID(A1&" "&A1,FIND(",",A1&" "&A1)+1,LEN(A1)))

Is that something you can work with?

Regards,

Ron Coderre
Microsoft MVP (Excel)

"Tina" wrote in message
...
I have imported data from another program and all of the names are in
this
format: Last Name, First Name

How can I change to First Name Last Name???


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Converting date into text format [email protected] Excel Discussion (Misc queries) 1 April 22nd 08 10:44 PM
Converting DD/MM/YYYY format into text MMYYYY giantwolf Excel Discussion (Misc queries) 3 August 3rd 06 03:58 PM
Converting Text to Time format of XX:XX Marck Excel Discussion (Misc queries) 3 February 25th 06 03:48 PM
Converting number or text to a Date Format samhain New Users to Excel 2 October 17th 05 02:28 PM
Keep number format after converting time to text DH Excel Discussion (Misc queries) 2 April 28th 05 07:18 PM


All times are GMT +1. The time now is 02:10 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"