ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Formula to return initials of a name (https://www.excelbanter.com/excel-programming/346412-formula-return-initials-name.html)

quartz[_2_]

Formula to return initials of a name
 
I am using Office 2003 on Windows XP.

I need a formula that will return the first two initials of a name in a cell.

For example, if the name "John Smith" or "john smith" is entered in a cell,
I need the formula in another cell to evaluate to "JS".

This only needs to work for the first two names in the cell, for example:
"John Henry Smith, Jr." or "J. H. Smith" or "j h smith" should return "JH".

Any assistance would be much appreciated. Thanks in advance.

bpeltzer

Formula to return initials of a name
 
=UPPER(LEFT(A1,1)&MID(A1,FIND(" ",A1)+1,1))

"quartz" wrote:

I am using Office 2003 on Windows XP.

I need a formula that will return the first two initials of a name in a cell.

For example, if the name "John Smith" or "john smith" is entered in a cell,
I need the formula in another cell to evaluate to "JS".

This only needs to work for the first two names in the cell, for example:
"John Henry Smith, Jr." or "J. H. Smith" or "j h smith" should return "JH".

Any assistance would be much appreciated. Thanks in advance.


JE McGimpsey

Formula to return initials of a name
 
One way:

=UPPER(LEFT(A1, 1) & MID(A1, FIND(" ",A1)+1,1))

In article ,
quartz wrote:

I am using Office 2003 on Windows XP.

I need a formula that will return the first two initials of a name in a cell.

For example, if the name "John Smith" or "john smith" is entered in a cell,
I need the formula in another cell to evaluate to "JS".

This only needs to work for the first two names in the cell, for example:
"John Henry Smith, Jr." or "J. H. Smith" or "j h smith" should return "JH".

Any assistance would be much appreciated. Thanks in advance.


quartz[_2_]

Formula to return initials of a name
 
Thanks!

"JE McGimpsey" wrote:

One way:

=UPPER(LEFT(A1, 1) & MID(A1, FIND(" ",A1)+1,1))

In article ,
quartz wrote:

I am using Office 2003 on Windows XP.

I need a formula that will return the first two initials of a name in a cell.

For example, if the name "John Smith" or "john smith" is entered in a cell,
I need the formula in another cell to evaluate to "JS".

This only needs to work for the first two names in the cell, for example:
"John Henry Smith, Jr." or "J. H. Smith" or "j h smith" should return "JH".

Any assistance would be much appreciated. Thanks in advance.




All times are GMT +1. The time now is 04:08 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com