Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I combine the first character of a cell with another cell in Excel?

People also ask

How do you extract the first character of a cell in Excel?

Extract first n characters from string Select a blank cell, here I select the Cell G1, and type this formula =LEFT(E1,3) (E1 is the cell you want to extract the first 3 characters from), press Enter button, and drag fill handle to the range you want. Then you see the first 3 characters are extracted.

How do you connect strings in Excel?

Use the & (Ampersand) Operator Click on the cell that contains the first text for the combined string. Type the & operator (shift + 7) Click on the cell that contains the next text for the combined string. Press Enter to complete the formula.


=CONCATENATE(LEFT(A1,1), B1)

Assuming A1 holds 1st names; B1 Last names


Personally I like the & function for this

Assuming that you are using cells A1 and A2 for John Smith

=left(a1,1) & b1

If you want to add text between, for example a period

=left(a1,1) & "." & b1

Use following formula:

=CONCATENATE(LOWER(MID(A1,1,1)),LOWER( B1))

for

Josh Smith = jsmith

note that A1 contains name and B1 contains surname


This is what formula I used in order to get the first letter of the first name and first letter of the last name from 2 different cells into one:

=CONCATENATE(LEFT(F10,1),LEFT(G10,1))
Lee Ackerman = LA