Can you show me a formula to change a name to initials?
Example John Doe = JD
Can you show me a formula to change a name to initials?
Example John Doe = JD
Assuming the name is in cell A1, and the first and last name are separated by a space, this formula will work:
=LEFT(A1,1)&" "&LEFT(REPLACE(A1,1,FIND(" ",A1),""),1)
Works fine, but can an error filter put incorporated so if only one word is entered, it just shows one initial (instead of an error)?
Perhaps try
=LEFT(REPLACE(A1,2,FIND(" ",A1&" ")-1,""),2)
Originally Posted by daddylonglegs
Works Great! Thanks heaps, DLL.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks