how do i combine the contents in a colum to the conten next to it

  • Thread starter Thread starter gin
  • Start date Start date
Method 1
=A1&B1&C1
If you want to add some more cells then add & symbol and mention the cell
name.

Method 2
=CONCATENATE(A1,B1,C1)

If you want to give space between the cell values then construct your
formula like this.

=CONCATENATE(A1," ",B1," ",C1)
=A1&" "&B1&" "&C1

Remember to Click Yes, if this post helps!
 
Back
Top