I have a table of sports teams of which part of it has Captain, Player 1, Player 2, Player 3 etc. and currently has salutation (female only), first name, surname, I have duplicated this part of the sheet onto another sheet where I wish to have the names reversed i.e. surname first, and then first name. That's the easy bit which I have achieved with the following formula:
=IFERROR(MID(Table2[@[Player 1]],FIND(" ",Table2[@[Player 1]])+1,256)&" "&LEFT(Table2[@[Player 1]],(FIND(" ",Table2[@[Player 1]],1))),""). This works perfectly for the males, but the females have first name, surname, salutation.
What I would like is to include salutions just for the females - Mrs, Miss and Ms, so that the result would look like Smith Mrs Michelle, Jones Ms Jane, but Smith John, and Jones Jim. I'm stumped.
=IFERROR(MID(Table2[@[Player 1]],FIND(" ",Table2[@[Player 1]])+1,256)&" "&LEFT(Table2[@[Player 1]],(FIND(" ",Table2[@[Player 1]],1))),""). This works perfectly for the males, but the females have first name, surname, salutation.
What I would like is to include salutions just for the females - Mrs, Miss and Ms, so that the result would look like Smith Mrs Michelle, Jones Ms Jane, but Smith John, and Jones Jim. I'm stumped.