Last name first name formula? For middle intial

zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,079
Office Version
  1. 365
Platform
  1. Windows
Hi I use this formula as of now. It works good with first name last name first.
It doesn't work good with if a name has a middle initial. Can something be added to this formula to change that the right way also.

=IF(B4="","",IF(ISNUMBER(SEARCH(" ",B4))=TRUE,RIGHT(B4,LEN(B4)-FIND(" ",B4))& " " & LEFT(B4,FIND(" ",B4)-1),B4))

Example person with middle intial

Jose J Aruga
J Aruga Jose <--- returns this

Aruga J Jose <--- need it to return this when it sees a middle initial. possible?
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Here is one way to do it:

=IFERROR(MID(B4, SEARCH("|", SUBSTITUTE(B4, " ", "|", LEN(B4)-LEN(SUBSTITUTE(B4, " ", ""))))+1, 2^8) & IFERROR(MID(B4, SEARCH(" ? ", B4), 3), " ") & LEFT(B4, FIND(" ", B4)), B4)
 
Last edited:
Upvote 0
My answer above, gives you an extra space at the end. To fix that, use this:

=IFERROR(MID(B4, SEARCH("|", SUBSTITUTE(B4, " ", "|", LEN(B4)-LEN(SUBSTITUTE(B4, " ", ""))))+1, 2^8) & IFERROR(MID(B4, SEARCH(" ? ", B4), 3), " ") & LEFT(B4, FIND(" ", B4)-1), B4)
 
Last edited:
Upvote 0
ok this works greats. Thanks very much. Thanks for the reply cheers
 
Upvote 0
Hi one small thing I seen. Anyway to add if finds nothing blank cell then return empty cell. Right now if it finds nothing it returns 0. If not its fine I can easier make a code to clear cells if 0. Just wanted to see first before I did that thanks
 
Upvote 0
Hi thanks for the reply. So I never wrapped formula before. I and looking it up now on how, but I'm not getting far. Maybe I did before and I'm just confusing myself I just don't know. Can you post an example on what I need to do with the T(). thanks if you can
 
Upvote 0
By "wrap" I just meant, drop the entire formula into T(). Since T() only displays text values, not numbers, the 0 disappears.
Here's how:
=T(IFERROR(MID(B4, SEARCH("|", SUBSTITUTE(B4, " ", "|", LEN(B4)-LEN(SUBSTITUTE(B4, " ", ""))))+1, 2^8) & IFERROR(MID(B4, SEARCH(" ? ", B4), 3), " ") & LEFT(B4, FIND(" ", B4)-1), B4))
 
Upvote 0
ok I think I misunderstood. It works thanks again. I rather add this then adding small code to remove 0 in B. thanks
 
Upvote 0

Forum statistics

Threads
1,215,409
Messages
6,124,743
Members
449,186
Latest member
HBryant

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top