Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Combine columns into one column

Hi, I want to combine columns of data into one, e.g.
to combine column 1, 2 and 3 into column 4 (excel prof. edition 2003)

column 1 column 2 column 3 column 4
1 a i 1
2 b ii a
3 c iii i
4 d iv 2
5 e v b
6 f vi ii
7 g vii 3
....

Thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,480
Default Combine columns into one column

Hi

One way
In cell D1 enter
=INDEX(A:C,INT((ROW()-1)/3)+1,MOD(ROW()-1,3)+1)
Copy down as far as required

--

Regards
Roger Govier

"Naruto" wrote in message
...
Hi, I want to combine columns of data into one, e.g.
to combine column 1, 2 and 3 into column 4 (excel prof. edition 2003)

column 1 column 2 column 3 column 4
1 a i 1
2 b ii a
3 c iii i
4 d iv 2
5 e v b
6 f vi ii
7 g vii 3
...

Thanks in advance.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Combine columns into one column

Hi, thanks for the reply.
I need some time to understand the formula and to modify it to suit my real
situation.
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 897
Default Combine columns into one column

What do you mean by "combine" ?

=A1&B1&C1 or =A1&","&B1&","&C1

will concatenate the cells into one cell (optionally with a comma
between)

=A1+B1+C1 or =SUM(A1:C1)

will add the values in each cell together.

If you have text and values mixed together in one row, you will want
the first option.


HTH,

JP

On Dec 17, 2:19 am, Naruto wrote:
Hi, I want to combine columns of data into one, e.g.
to combine column 1, 2 and 3 into column 4 (excel prof. edition 2003)

column 1 column 2 column 3 column 4
1 a i 1
2 b ii a
3 c iii i
4 d iv 2
5 e v b
6 f vi ii
7 g vii 3
...

Thanks in advance.


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 783
Default Combine columns into one column

Naruto wrote:
Hi, I want to combine columns of data into one, e.g.
to combine column 1, 2 and 3 into column 4 (excel prof. edition 2003)

column 1 column 2 column 3 column 4
1 a i 1
2 b ii a
3 c iii i
4 d iv 2
5 e v b
6 f vi ii
7 g vii 3
...

Thanks in advance.


If the functions in the freely downloadable file at
http://home.pacbell.net/beban are available to your workbook

=ArrayReshape(a1:c7,COUNTA(a1:c7,1)) array entered.

Alan Beban


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Combine multiple columns into two long columns, Repeating rows in first column [email protected] Excel Discussion (Misc queries) 2 July 31st 06 09:45 PM
Combine multiple columns into two long columns, Repeating rows in first column [email protected] Excel Discussion (Misc queries) 0 July 31st 06 05:07 PM
How to combine data from two columns into one column? dcnguyen Excel Worksheet Functions 3 January 8th 06 11:40 PM
How do I combine multiple columns into just 1 column? scosus Excel Discussion (Misc queries) 1 November 2nd 05 04:21 PM
how to combine several columns into a single column jims Excel Discussion (Misc queries) 9 August 15th 05 12:00 PM


All times are GMT +1. The time now is 05:44 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"