Lauren has attended:
Excel Advanced course
Columns, text
How do you put two columns of text together in one column?
RE: Columns, text
Hi Lauren
Thank you for your question.
You should be able to use the CONCATENATE function to do this. For examle if column A contains first names and column B contains last names, you can display the full name in column C by entering the following:
=concatenate(A1," ",B1)
This will combine what's in cell A1 with what's in cell B1 with a space to separate them.
Amanda