Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a formula to combine the text in multiple cells into one cell? I.E.
if Cell A1 says RNA and Cell B1 says Te4 and Cell C1 says Late, is there a way to make Cell D1 combine them and be "RNA Te4 Late"? Thanks! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use Concatenate, or just a regular formula:
=CONCATENATE(A1," ",B1," ",C1) =A1&" "&B1&" "&C1 -- John C "lightbulb" wrote: Is there a formula to combine the text in multiple cells into one cell? I.E. if Cell A1 says RNA and Cell B1 says Te4 and Cell C1 says Late, is there a way to make Cell D1 combine them and be "RNA Te4 Late"? Thanks! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=A1&" "&B1&" "&C1
The " " just adds a space in between the words. You could also use =Concatenate(A1,B1,C1) if you don't need the spaces -- Tips for Excel, Word, PowerPoint and Other Applications http://www.kan.org/tips "lightbulb" wrote: Is there a formula to combine the text in multiple cells into one cell? I.E. if Cell A1 says RNA and Cell B1 says Te4 and Cell C1 says Late, is there a way to make Cell D1 combine them and be "RNA Te4 Late"? Thanks! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=A1&" "&B1&" "&C1
or =CONCATENATE(A1," ",B1," ",C1) -- David Biddulph "lightbulb" wrote in message ... Is there a formula to combine the text in multiple cells into one cell? I.E. if Cell A1 says RNA and Cell B1 says Te4 and Cell C1 says Late, is there a way to make Cell D1 combine them and be "RNA Te4 Late"? Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Combine text and cells | Excel Discussion (Misc queries) | |||
Combine cells with text formatting | Excel Worksheet Functions | |||
How can I combine text from several cells into one? | Excel Discussion (Misc queries) | |||
combine text of multiple cells | Excel Worksheet Functions | |||
How to combine text from multiple cells? | Excel Worksheet Functions |