A Anitha New Member Sep 24, 2013 #1 Hi Please anyone share how to combine multiple columns into a single column without using cut, copy, & paste? Regards, Anitha
Hi Please anyone share how to combine multiple columns into a single column without using cut, copy, & paste? Regards, Anitha
N NARAYANK991 Excel Ninja Sep 24, 2013 #2 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 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
A Anitha New Member Sep 24, 2013 #3 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
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
Xiq Active Member Sep 24, 2013 #4 Try somthing like this: Code: =A1&B1&C1 If you need spaces between the two text-strings, try this: Code: =A1&" "&B1&" "&C1
Try somthing like this: Code: =A1&B1&C1 If you need spaces between the two text-strings, try this: Code: =A1&" "&B1&" "&C1
N NARAYANK991 Excel Ninja Sep 24, 2013 #5 Hi Anitha , The syntax when using the CONCATENATE function would be : =CONCATENATE(A1," ",B1," ",C1) or =CONCATENATE(A1,B1,C1) Narayan
Hi Anitha , The syntax when using the CONCATENATE function would be : =CONCATENATE(A1," ",B1," ",C1) or =CONCATENATE(A1,B1,C1) Narayan