• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Doubt in Combining in multiple columns into a single column

Anitha

New Member
Hi

Please anyone share how to combine multiple columns into a single column without using cut, copy, & paste?

Regards,
Anitha
 
Hi Anitha ,

It all depends on what you have in those columns ; if the columns contain numeric data , then combining them as they are is meaningless ; if the data is text , then combining can be done using the & function ( CONCATENATE ).

Narayan
 
Hi Naryan,

Thanks for your reply.
Actually my datas is in text, i tried using ( CONCATENATE ) function but it doesn't worked for me.

Anitha
 
Try somthing like this:
Code:
=A1&B1&C1

If you need spaces between the two text-strings, try this:
Code:
=A1&" "&B1&" "&C1
 
Hi Anitha ,

The syntax when using the CONCATENATE function would be :

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

or

=CONCATENATE(A1,B1,C1)
Narayan
 
Back
Top