Combine Text Cells

  • Thread starter Thread starter lightbulb
  • Start date Start date
L

lightbulb

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!
 
You can use Concatenate, or just a regular formula:
=CONCATENATE(A1," ",B1," ",C1)
=A1&" "&B1&" "&C1
 
=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
 
Back
Top