D
Debra
I a spreadsheet with first name in one column and last
name in the next column. How can I put them together in
one column?
name in the next column. How can I put them together in
one column?
-----Original Message-----
Debra,
Assuming first name is in column A and last name is in
column B. Type the following in C1:
=A1&" "&B1
And copy down the formula
You can also use the CONCATENATE function:
=CONCATENATE(A1," ",B1)
Regards,
Felipe
.