![]() |
Combining columns
So,
the thing is I need to connect two columns into one, but in a way that it puts one row from the first column, then a row from the second, and then again from then first etc.. can that be done? |
Combining columns
Not sure what is wanted. Try this and tell if it works
=A1&B1 or =A1&" "&B1 best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "iznogud" wrote in message ... So, the thing is I need to connect two columns into one, but in a way that it puts one row from the first column, then a row from the second, and then again from then first etc.. can that be done? |
Combining columns
no that didn't do it, it connected it into a single column, but what I need
is to take row from one column, and put a row from the second one underneath it, and so on.. is there a place where I could put the tables somewhere here so I can write on them in order to show you what I mean? "Bernard Liengme" wrote: Not sure what is wanted. Try this and tell if it works =A1&B1 or =A1&" "&B1 best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "iznogud" wrote in message ... So, the thing is I need to connect two columns into one, but in a way that it puts one row from the first column, then a row from the second, and then again from then first etc.. can that be done? |
Combining columns
If the functions in the freely downloadable file at
http://home.pacbell.net/beban are available to your workbook =ArrayReshape(A1:B3,COUNTA(A1:B3),1) Alan Beban iznogud wrote: no that didn't do it, it connected it into a single column, but what I need is to take row from one column, and put a row from the second one underneath it, and so on.. is there a place where I could put the tables somewhere here so I can write on them in order to show you what I mean? "Bernard Liengme" wrote: Not sure what is wanted. Try this and tell if it works =A1&B1 or =A1&" "&B1 best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "iznogud" wrote in message ... So, the thing is I need to connect two columns into one, but in a way that it puts one row from the first column, then a row from the second, and then again from then first etc.. can that be done? |
Combining columns
iznogud wrote...
.... is to take row from one column, and put a row from the second one underneath it, and so on.. .... Name the first column Col1 and the second Col2. If they're in the same worksheet, and the topmost cell in the result range were X5, X5: =INDEX((Col1,Col2),INT((ROWS(X$5:X5)+1)/2),1,2-MOD(ROWS(X$5:X5),2)) Fill X5 down as far as needed. |
Combining columns
You may want to try this macro.
Sub columnmerge() 'original data is preserved and combine takes 'place in a new column try changing the "2" to a different number for more columns For i = 1 To 250 ' change to suit ActiveSheet.Cells(i, 3) = ActiveSheet.Cells _ ((i + 1 - ((i + 1) Mod 2)) / 2, ((i + 1) Mod 2) + 1) Next i End Sub When done, delete the original columns if you wish. Gord Dibben MS Excel MVP On Fri, 18 May 2007 06:08:03 -0700, iznogud wrote: no that didn't do it, it connected it into a single column, but what I need is to take row from one column, and put a row from the second one underneath it, and so on.. is there a place where I could put the tables somewhere here so I can write on them in order to show you what I mean? "Bernard Liengme" wrote: Not sure what is wanted. Try this and tell if it works =A1&B1 or =A1&" "&B1 best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "iznogud" wrote in message ... So, the thing is I need to connect two columns into one, but in a way that it puts one row from the first column, then a row from the second, and then again from then first etc.. can that be done? |
All times are GMT +1. The time now is 07:00 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com