Is it possible to pull the first initial from first name and last name from a contact list column?

Best Answer
-
Try this formula
=LEFT([Employee Name]@row, 1) + RIGHT([Employee Name]@row, LEN([Employee Name]@row) - FIND(" ", [Employee Name]@row) + 1)
Answers
-
Try this formula
=LEFT([Employee Name]@row, 1) + RIGHT([Employee Name]@row, LEN([Employee Name]@row) - FIND(" ", [Employee Name]@row) + 1)
-
It worked. Thank you so much for your help!
-
Paul H: Could you twist this formula slightly to show me how I'd pull the FIRST name + the LAST INITIAL. No middle names/initials to worry about. Thanks in advance! -R
-
@Paul H Hello can you help me with anothe contact formula, I want to extract the First Name and the Initial of the Last Name, the column is a contact list that doesn't have middle names and it will contain one or two persons MAX.
Example
name Short Name
Richard Silber Richard S
Paul Silber Anna Frank Paul S Anna F
Help Article Resources
Categories
Check out the Formula Handbook template!