tags:

views:

4042

answers:

3

Hi

I have first names in one column and second names in another, I want to create a third column that contains the first character from the first name and add it to the surname creating first initial + surname.

John & Smith = jsmith

How can I do this using Excel?

Thanks all

+7  A: 

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

Assuming A1 holds 1st names; B1 Last names

Ian Jacobs
+4  A: 

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

Jon Fournier
Indeed. I could see the point of a concatenate function if you could pass a range in, but... you can't.
Hobbo
A: 

Use following formula
=CONCATENATE(LOWER(MID(A1,1,1)),LOWER( B1))
for
Josh Smith = jsmith
note that A1 contains name and B1 contains surname

Chris
------
Convert your Excel spreadsheet into an online calculator.
http://www.spreadsheetconverter.com