Stack multiple columns into two columns in pairs of two

jhicks

New Member
Joined
Sep 12, 2017
Messages
4
I have columns A through DB (A:DB) with data, and there is a varied number of rows for each column. If possible, I need a macro that will "stack" columns in pairs of two. For example, column "C" directly under column "A" and column "D" directly under column "B" and so on for all columns A:DB.



This is an example of what my data looks like:

<code style="margin: 0px; padding: 0px; line-height: 13px; color: rgb(51, 51, 51); background-color: rgb(250, 250, 250);">Row Code Price Code Price
ROW 1 2598 F800 2599 F800
ROW 2 2598 K1300 2599 K1300
ROW 3 2598 S1000 2599 R900
ROW 4 2598 G650 2599 G650
ROW 5 2598 R1200 2599 K1600
ROW 6 2599 S1000
ROW 7 2599 HP2
ROW 8 2599 R1200
Down to Row 63
.
.
</code>
This is an example of what I need the output to look like:

<code style="margin: 0px; padding: 0px; line-height: 13px; color: rgb(51, 51, 51); background-color: rgb(250, 250, 250);"> Code price
ROW 1 2598 F800
ROW 2 2598 K1300
ROW 3 2598 S1000RR
ROW 4 2598 G650
ROW 5 2598 R1200
ROW 6 2599 S1000
ROW 7 2599 HP2
ROW 8 2599 R1200
ROW 9 2599 F800
ROW 10 2599 K1300
ROW 11 2599 R900
ROW 12 2599 G650
ROW 13 2599 K1600
.</code>
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Hello jhicks,

Try this macro. Add a new VBA Module to your workbook and paste the code below into and then run the macro "CombineColumns".

Code:
Sub CombineColumns()


    Dim cnt     As Long
    Dim col     As Long
    Dim endA    As Long
    Dim endB    As Long
    Dim n       As Long
    Dim Rng     As Range
    Dim Wks     As Worksheet
    
        Set Wks = Worksheets("Sheet1")
        Set Rng = Wks.Range("A1").CurrentRegion
        
            Set Rng = Intersect(Rng, Rng.Offset(1, 0))
            endA = Rng.Cells(Rng.Rows.Count + 1, "A").End(xlUp).Row
            endB = Rng.Cells(Rng.Rows.Count + 1, "B").End(xlUp).Row
            
            For col = 3 To Rng.Columns.Count
                n = n + 1
                cnt = Rng.Cells(Rng.Rows.Count + 1, col).End(xlUp).Row
                Select Case (n And 1)
                    Case 0
                        Rng.Cells(endB, 2).Resize(cnt, 1).Value = Rng.Columns(col).Cells.Value
                        endB = endB + cnt + 1
                    Case 1
                        Rng.Cells(endA, 1).Resize(cnt, 1).Value = Rng.Columns(col).Cells.Value
                        endA = endA + cnt + 1
                End Select
            Next col
            
End Sub
 
Upvote 0
Thank you, unfortunately the macro did not work. I pasted the macro in a VBA module hit run and nothing happened.
Hello jhicks,

Try this macro. Add a new VBA Module to your workbook and paste the code below into and then run the macro "CombineColumns".

Code:
Sub CombineColumns()


    Dim cnt     As Long
    Dim col     As Long
    Dim endA    As Long
    Dim endB    As Long
    Dim n       As Long
    Dim Rng     As Range
    Dim Wks     As Worksheet
    
        Set Wks = Worksheets("Sheet1")
        Set Rng = Wks.Range("A1").CurrentRegion
        
            Set Rng = Intersect(Rng, Rng.Offset(1, 0))
            endA = Rng.Cells(Rng.Rows.Count + 1, "A").End(xlUp).Row
            endB = Rng.Cells(Rng.Rows.Count + 1, "B").End(xlUp).Row
            
            For col = 3 To Rng.Columns.Count
                n = n + 1
                cnt = Rng.Cells(Rng.Rows.Count + 1, col).End(xlUp).Row
                Select Case (n And 1)
                    Case 0
                        Rng.Cells(endB, 2).Resize(cnt, 1).Value = Rng.Columns(col).Cells.Value
                        endB = endB + cnt + 1
                    Case 1
                        Rng.Cells(endA, 1).Resize(cnt, 1).Value = Rng.Columns(col).Cells.Value
                        endA = endA + cnt + 1
                End Select
            Next col
            
End Sub
 
Upvote 0
Hello jhicks,

The macro is set for "Sheet1" in your workbook. If you don't have a worksheet named "Sheet1" the macro will do nothing.
 
Upvote 0
CodePayment Rate Code Payment Rate Code Payment Rate
1111 $50.00 1118 $50.00 1125 $50.00
1112 $51.00 1119 $51.00 1126 $51.00
1113 $52.00 1120 $52.00 1127 $52.00
1114 $53.00 1121 $53.00 1128 $53.00
1115 $54.00 1122 $54.00 1129 $54.00
1116 $55.00 1123 $55.00 1130 $55.00
1117 $56.00 1124 $56.00 1131 $56.00

This is a little bit better example
 
Upvote 0
Hello jhicks,

I change the macro a bit. It will now run on the active sheet. As long as the layout is from A1:DB? this will work.

Code:
Sub CombineColumns()


    Dim cnt     As Long
    Dim col     As Long
    Dim endA    As Long
    Dim endB    As Long
    Dim n       As Long
    Dim Rng     As Range
    Dim Wks     As Worksheet
    
        Set Wks = ActiveSheet
        Set Rng = Wks.Range("A1").CurrentRegion
        
            Set Rng = Intersect(Rng, Rng.Offset(1, 0))
            endA = Rng.Cells(Rng.Rows.Count + 1, "A").End(xlUp).Row
            endB = Rng.Cells(Rng.Rows.Count + 1, "B").End(xlUp).Row
            
            For col = 3 To Rng.Columns.Count
                n = n + 1
                cnt = Rng.Cells(Rng.Rows.Count + 1, col).End(xlUp).Row - 1
                Select Case (n And 1)
                    Case 0
                        Rng.Cells(endB, 2).Resize(cnt, 1).Value = Rng.Columns(col).Cells.Value
                        endB = endB + cnt
                    Case 1
                        Rng.Cells(endA, 1).Resize(cnt, 1).Value = Rng.Columns(col).Cells.Value
                        endA = endA + cnt
                End Select
            Next col
            
End Sub
 
Upvote 0
Try this, which is based on your first data set.
Code:
Sub StackStuff()
Dim arrIn()
Dim arrOut()
Dim cnt As Long
Dim I As Long
Dim J As Long

    arrIn = Range("A1").CurrentRegion
    
    For I = LBound(arrIn, 2) To UBound(arrIn, 2) Step 2
        For J = LBound(arrIn, 1) + 1 To UBound(arrIn, 1)
            If arrIn(J, I) <> "" Then
                cnt = cnt + 1
                ReDim Preserve arrOut(1 To 2, 1 To cnt)
                
                arrOut(1, cnt) = arrIn(J, I)
                arrOut(2, cnt) = arrIn(J, I + 1)
            End If
        Next J
    Next I
    
    With Range("A1").End(xlToRight).Offset(, 2)
        .Resize(, 2).Value = Array("Code", "Price")
        .Offset(1).Resize(UBound(arrOut, 2), UBound(arrOut, 1)).Value = Application.Transpose(arrOut)
    End With
    
End Sub
 
Upvote 0
Leith Ross that worked great!!!! thank you so much :):)
Hello jhicks,

Try this macro. Add a new VBA Module to your workbook and paste the code below into and then run the macro "CombineColumns".

Code:
Sub CombineColumns()


    Dim cnt     As Long
    Dim col     As Long
    Dim endA    As Long
    Dim endB    As Long
    Dim n       As Long
    Dim Rng     As Range
    Dim Wks     As Worksheet
    
        Set Wks = Worksheets("Sheet1")
        Set Rng = Wks.Range("A1").CurrentRegion
        
            Set Rng = Intersect(Rng, Rng.Offset(1, 0))
            endA = Rng.Cells(Rng.Rows.Count + 1, "A").End(xlUp).Row
            endB = Rng.Cells(Rng.Rows.Count + 1, "B").End(xlUp).Row
            
            For col = 3 To Rng.Columns.Count
                n = n + 1
                cnt = Rng.Cells(Rng.Rows.Count + 1, col).End(xlUp).Row
                Select Case (n And 1)
                    Case 0
                        Rng.Cells(endB, 2).Resize(cnt, 1).Value = Rng.Columns(col).Cells.Value
                        endB = endB + cnt + 1
                    Case 1
                        Rng.Cells(endA, 1).Resize(cnt, 1).Value = Rng.Columns(col).Cells.Value
                        endA = endA + cnt + 1
                End Select
            Next col
            
End Sub
 
Upvote 0
Hello jhicks,

You're welcome. Glad I could help.
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,871
Members
449,055
Latest member
excelhelp12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top