From: senthil on
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
From: Pritesh on
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 "-".

--
Regards,
Pritesh


"senthil" wrote:

> 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
From: Jacob Skaria on
Try the below and enable Wrap Text from Format>Cells>Alignment>Text control

=A1&CHAR(10)&B1&CHAR(10)&C1

--
Jacob (MVP - Excel)


"senthil" wrote:

> 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
From: Gord Dibben on
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

On Wed, 19 May 2010 03:09:01 -0700, senthil
<senthil(a)discussions.microsoft.com> wrote:

>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