how do i merge the datas in 2 columns

  • Thread starter Thread starter senthil
  • Start date Start date
S

senthil

i have a data address data in 3 columns like door no. in one, street no in
another & city name in another column. shall i get all these address in a
single column (consolidated)

Thanks
 
Try below formula...

If data is in columns A, B & C... then in column D, say...

=A1&" "&B1&" "&C1

Here, & works as concatinator/joiner and " " puts space. You can ignore " "
or try putting any other thing there like "-".
 
Try the below and enable Wrap Text from Format>Cells>Alignment>Text control

=A1&CHAR(10)&B1&CHAR(10)&C1
 
See other replies for suggestions on how to do.

My suggestion is...........don't do it.

Makes it much more difficult if in the furture you wish to sort or filter
the data.


Gord Dibben MS Excel MVP
 
Back
Top