Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You have to do it with a very simple macro
Sub test() Lastrow = Rows.Count For RowCount = 1 To Lastrow Set firstcell = Cells(RowCount, "E"). _ End(xlToRight) If Not IsEmpty(firstcell) Then Set cutrange = Range(firstcell, _ firstcell.Offset(rowoffset:=0, _ columnoffset:=3)) cutrange.Cut _ Destination:=Range("A" & RowCount) End If Next RowCount End Sub "mrg9999" wrote: Excel move multiple columns into single set of column How can I automate this I have a huge sheet A B C D E F G H I --- ZZ R1 R2 R3 RN and I want to move every block of 4 columns(or n cols) to sit under A -D so R1 A B C D R2 R3 R4 R5 E F G H R6 R7 R8 R9 R10 I J K L etc |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I convert multiple columns to a single column? | Excel Discussion (Misc queries) | |||
Single column into multiple columns | Excel Discussion (Misc queries) | |||
Multiple Columns to Single Columns | Excel Discussion (Misc queries) | |||
.csv file Multiple columns of data in single Cell | Excel Discussion (Misc queries) | |||
Sum Count of Single Criteria in Multiple Non-Adjacent columns | Excel Worksheet Functions |