![]() |
Combine Text Cells
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! |
Combine Text Cells
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! |
Combine Text Cells
=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! |
Combine Text Cells
=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! |
All times are GMT +1. The time now is 03:08 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com