ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Use Len and Left to make name 3 letters (https://www.excelbanter.com/excel-worksheet-functions/196246-use-len-left-make-name-3-letters.html)

Darlie Mary[_2_]

Use Len and Left to make name 3 letters
 
The last name is in Column C and the first name is in Column A. I need to
make a new column with the first 3 letters of the last name. If the last name
is 2 letters, the last letter needs to be a Z. (Example: Bo, it needs to be
BoZ). Also need to add the first initial of the first name.

T. Valko

Use Len and Left to make name 3 letters
 
Assuming that the last name will always be at least 2 characters long:

=IF(LEN(C1)2,LEFT(C1,3)&LEFT(A1),C1&"Z"&LEFT(A1))

--
Biff
Microsoft Excel MVP


"Darlie Mary" wrote in message
...
The last name is in Column C and the first name is in Column A. I need to
make a new column with the first 3 letters of the last name. If the last
name
is 2 letters, the last letter needs to be a Z. (Example: Bo, it needs to
be
BoZ). Also need to add the first initial of the first name.




Teethless mama

Use Len and Left to make name 3 letters
 
=LEFT(C1&"Z",3)&LEFT(A1)


"Darlie Mary" wrote:

The last name is in Column C and the first name is in Column A. I need to
make a new column with the first 3 letters of the last name. If the last name
is 2 letters, the last letter needs to be a Z. (Example: Bo, it needs to be
BoZ). Also need to add the first initial of the first name.



All times are GMT +1. The time now is 12:01 PM.

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