Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Function Ins_Maiden(fName As String, mName As String)
Dim lSpace As Integer
lSpace = InStrRev(fName, " ")
blah = Left(fName, lSpace) & mName & " " & Right(fName, Len(fName) - lSpace)
End Function
=REPLACE($A1,LOOKUP(30,FIND(" ",$A1,ROW($1:$30)))+1,0,$B1& " ")
=REPLACE($A1,LOOKUP(30,FIND(" ",$A1,ROW($1:$30)))+1,0,$B1& " ")
FIND(" ",$A1,Row($1:$30)
LOOKUP(30,FIND(" ",$A1,ROW($1:$30))
REPLACE($A1,LOOKUP(30,FIND(" ",$A1,ROW($1:$30)))+1,0,$B1& " ")
Hi John:anotherhiggins: said:You ain't kidding, Skip. I saw that formula and immediately suspected that it worked via the PFM principle.