Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello!
I have 3 cells of data: a1 = car a2 = truck a3 = cycle Is there a way I can "copy" and "paste" these 3 cells into 1 cell, without the loss of data (merge cells of course does not work). I would like to end up with: b1 = car truck cycle I'm using Excel 2003 THANKS!!!!! Gene:) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=A1&CHAR(10)&A2&CHAR(10)&A3
Make sure you format the cell to have word wrap, otherwise the new line character will just display a square. -- Best Regards, Luke M "Gene" wrote: Hello! I have 3 cells of data: a1 = car a2 = truck a3 = cycle Is there a way I can "copy" and "paste" these 3 cells into 1 cell, without the loss of data (merge cells of course does not work). I would like to end up with: b1 = car truck cycle I'm using Excel 2003 THANKS!!!!! Gene:) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
THANKS LUK!
U are the MAN! "Luke M" wrote: =A1&CHAR(10)&A2&CHAR(10)&A3 Make sure you format the cell to have word wrap, otherwise the new line character will just display a square. -- Best Regards, Luke M "Gene" wrote: Hello! I have 3 cells of data: a1 = car a2 = truck a3 = cycle Is there a way I can "copy" and "paste" these 3 cells into 1 cell, without the loss of data (merge cells of course does not work). I would like to end up with: b1 = car truck cycle I'm using Excel 2003 THANKS!!!!! Gene:) |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not by copying and pasting in one fell swoop.
One way would be to use a formula =A1&CHAR(10)&A2&CHAR(10)&A3 make sure B1 has wrap text turned on under formatcellsalignment -- Regards, Peo Sjoblom "Gene" wrote in message ... Hello! I have 3 cells of data: a1 = car a2 = truck a3 = cycle Is there a way I can "copy" and "paste" these 3 cells into 1 cell, without the loss of data (merge cells of course does not work). I would like to end up with: b1 = car truck cycle I'm using Excel 2003 THANKS!!!!! Gene:) |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
THANKS Peo!!!!!!!!!!!!!!!!!
"Peo Sjoblom" wrote: Not by copying and pasting in one fell swoop. One way would be to use a formula =A1&CHAR(10)&A2&CHAR(10)&A3 make sure B1 has wrap text turned on under formatcellsalignment -- Regards, Peo Sjoblom "Gene" wrote in message ... Hello! I have 3 cells of data: a1 = car a2 = truck a3 = cycle Is there a way I can "copy" and "paste" these 3 cells into 1 cell, without the loss of data (merge cells of course does not work). I would like to end up with: b1 = car truck cycle I'm using Excel 2003 THANKS!!!!! Gene:) |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One more using a UDF to save some typing.
Function ConCatRange(CellBlock As Range) As String Dim Cell As Range Dim sbuf As String For Each Cell In CellBlock If Len(Cell.Text) 0 Then sbuf = sbuf & Cell.Text & Chr(10) Next ConCatRange = Left(sbuf, Len(sbuf) - 1) End Function =ConCatRange(A1:A3) =ConCatRange(A1,A2,A3,F7,G12) for non-contiguous range. Gord Dibben MS Excel MVP On Thu, 19 Jun 2008 13:00:28 -0700, Gene wrote: THANKS Peo!!!!!!!!!!!!!!!!! "Peo Sjoblom" wrote: Not by copying and pasting in one fell swoop. One way would be to use a formula =A1&CHAR(10)&A2&CHAR(10)&A3 make sure B1 has wrap text turned on under formatcellsalignment -- Regards, Peo Sjoblom "Gene" wrote in message ... Hello! I have 3 cells of data: a1 = car a2 = truck a3 = cycle Is there a way I can "copy" and "paste" these 3 cells into 1 cell, without the loss of data (merge cells of course does not work). I would like to end up with: b1 = car truck cycle I'm using Excel 2003 THANKS!!!!! Gene:) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I split 1 cell into 2 cells in Excel? | Excel Discussion (Misc queries) | |||
How do I make cells "If cell is blank then cell=0"in Excel 2000? | Excel Discussion (Misc queries) | |||
excel cells are merging onto the next cell | Excel Worksheet Functions | |||
In Excel, how do you move the contents of 3 cells into 1 cell? | Excel Discussion (Misc queries) | |||
How do I split a cell into 3 different cells in excel? | New Users to Excel |