=RIGHT(A1,LEN(A1)-FIND(" ",A1)) & " " & LEFT(A1,1)
If you can have more words, then it gets real tricky, because how can you tell how many names go with first name and how many go with last?
For example, you could have a two first name, like:
Billy Ray Cyrus
oe you could have a two word last name, like:
Martin Van Buren
So, you really cannot develop a "hard-and-fast" rule that will handle all these possibilities perfectly.
Well, that certainly makes things easier! Its nice when things work out like that.I'm lucky that any double word last names are entered without the space so Van Buren is entered as
VanBuren and I don't have any double word first names.