English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I'd like to merge the contents of two columns whilst maintaining their contents. How do I do this?

Example of current state of spreadsheet:
Column1 Column2 Column 3
Screen manufacturer Screen size Screen Type
Dell 21" TFT
Dell 24" TFT
Panasonic 32" LCD

Instead of three columns I'd like 1 single column containing all that information: ie.

Column1
Screen
Dell 24" TFT
Dell 19" TFT
Panasonic 32" LCD

Any help in doing this would be much appreciated, I'm sure it can't be too complicated. I have a vague recollection that the function for doing this is called "Concatenate" although I might be wrong.

2007-01-10 21:58:34 · 2 answers · asked by Diarmid 3 in Computers & Internet Software

That didn't come out very well in this text editor... in the original example (current state) each piece of information is in a different column. ie. Column one contains DELL, column 2 contains 21", column 3 contains TFT etc.

2007-01-10 21:59:48 · update #1

thanks for the answer. Any chance you could tell me how to apply this concatenation to an entire column - I have over 3000 entries and don't really fancy doing them one by one. Cheers!

2007-01-11 00:10:18 · update #2

2 answers

Use the Concatenate function. Create a new column to the right of your three existing columns and enter the following formula :

=CONCATENATE(A1," ",A2," ",A3)

To apply to the whole column double click on the back dot in the bottom right hand corner of the cell and it should copy all the way down.

2007-01-11 03:25:27 · answer #1 · answered by Peter H 2 · 0 1

either use concatentate:

=CONCATENATE(A1," ",B1," ",C1)

or

=A1&" "&B1&" "&C1

2007-01-11 08:02:51 · answer #2 · answered by O Caçador 6 · 1 0

fedest.com, questions and answers