Invert Cell contents

M

Mike F

I have a cell with the name Doe Jane.
Is there a way I can invert the information in the cell to read 'Jane Doe'?
 
J

Jacob Skaria

Try
=MID(A1,FIND(" ",A1),99)& " " & LEFT(A1,FIND(" ",A1))

If this post helps click Yes
 
L

L. Howard Kittle

Hi Mike,

=MID(A1,FIND(" ",A1)+1,10)&" "&LEFT(A1,FIND(" ",A1))

Will work for simple names per your example. Goes nuts with names like Du
Pont James or St James Susan.

(Change the 10 to a larger number if first name exceeds 10 characters)

HTH
Regards,
Howard
 

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

Similar Threads

Countif. 1
SUMIF & IF 5
alpha numeric sorting 2
name listings 1
How to invert Cols/Rows? 2
VLOOKUP and names with Commas 3
looking for help again 1
Auto populate fields 1

Top