Flip/Flop

A

Angie M.

Hi,

I'm working with Excel 2003. I have a column that contains First Name,
space, Last name. I need it to contain Last Name, comma, space, First name.
I've searched through the other questions/answers and tried a few things
myself (like Text to columns) with no luck.

Is there anyway this can be done other than retyping?? I can create a new
column to hold the data and then delete the old one if necessary, I just need
to fix about 1100 rows and then from there I will enter it the correct way in
the first place.

Thanks in advance for any help.
 
E

Ed Ferrero

Hi Angie,

If cell A1 contains "Red Ferrari" this formula will return "Ferrari, Red"

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

Ed Ferrero
 
A

Angie M.

Thanks, that worked perfectly! I just realized that I need to turn the
result of the formula into text now, so I will create another blank column to
the right and convert the results of the formula into text. How do I do
that??

Thanks again, Ed.
 
E

Ed Ferrero

Hi Angie,
Thanks, that worked perfectly! I just realized that I need to turn the
result of the formula into text now, so I will create another blank column
to
the right and convert the results of the formula into text. How do I do
that??

The formula does return text. If you want Text in a cell instead of a
formula, Copy, Paste Special, Values.

Ed Ferrero
www.edferrero.com
 

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