How to combine all columns into one column in Excel

  • Greetings to all,

    I have this problem combining all the columns in one excel file to only one column.

    For e.g.

    Column A= 10 rows

    Column B= 10 rows

    Column C= 12 rows

    How can I do this in perhaps Excel or SQL Server 2003?

    I would like to have only 1 column which consists of 32 rows refering to the example above.

    I am coping with around 300 columns each day, so I would like to have a better solution.

    Thanks.

    cheers,

    -NoeL-

  • make an union?

    select columnA as MyColumn

    union all

    select columnB as MyColumn

    union all

    select columnC as MyColumn

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply