Combining multiple columns of text

A

Amber Schellenberg

I have a file of addresses. Each individual line of the address is in a
different adjacent cell. I would like to be able to combine the text into
one cell that is separated by commas, and or spaces. Is there an easy way to
achieve this
 
G

Gary''s Student

Yes. You can combine text from different cells into a single cell.

For example, if A1 contains Springfield
and A2 contains Ohio
then =A1&", "&A2 in a cell would result in Springfield, Ohio
 
Top