Show AllShow All

Combine first and last names

Use the CONCATENATE function or the ampersand (&) operator to do this task.

Worksheet example

The example may be easier to understand if you copy it to a blank worksheet.

Show How?

 
1
2
3
A B
First Name Last Name
Nancy Davolio
Andrew Fuller
Formula Description (Result)
=A2&" "&B2 Combines the names above, separated by a space (Nancy Davolio)
=B3&", "&A3 Combines the names above, separated by a comma (Fuller, Andrew)
=CONCATENATE(A2," ",B2) Combines the names above, separated by a space (Nancy Davolio)

Note   To replace the formula with the results, select the cells, click Copy Button image, click Paste Button image, click Paste Options Button image , and then click Values Only.

Function details

CONCATENATE