Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 100
Default Excel - 3 cells into 1 cell

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Excel - 3 cells into 1 cell

=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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 100
Default Excel - 3 cells into 1 cell

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default Excel - 3 cells into 1 cell

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 100
Default Excel - 3 cells into 1 cell

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Excel - 3 cells into 1 cell

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I split 1 cell into 2 cells in Excel? Chalky Excel Discussion (Misc queries) 6 April 26th 23 03:47 AM
How do I make cells "If cell is blank then cell=0"in Excel 2000? DougMinor1 Excel Discussion (Misc queries) 1 January 1st 07 04:40 PM
excel cells are merging onto the next cell exhausted Excel Worksheet Functions 3 January 27th 06 11:50 AM
In Excel, how do you move the contents of 3 cells into 1 cell? Lillie Excel Discussion (Misc queries) 2 January 4th 06 03:40 AM
How do I split a cell into 3 different cells in excel? K8 New Users to Excel 5 December 1st 05 06:38 PM


All times are GMT +1. The time now is 10:43 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"