Stack Multiple columns into one on Master sheet

Fel123

New Member
Joined
Aug 27, 2018
Messages
3
Hi Everyone,


I would like to create a vba that helps

1) Create a master sheet
2) Loop through all worksheets starting with " Data"
3) Copy column DH onwards to last column and stack them in one column on Master sheet , pasting them as values
4) If master sheet exists, to just replace data ( don't need to create again)



So far this is my code, but it only copies out column DH from each sheet, how do i extend it to other columns as well ? How can I also add point 4) to this?
Thank you in advance!!


Code:
Sub ColumnAMaster()
Dim lastRow As Long, lastRowMaster As Long
Dim ws As Worksheet
Dim Master As Worksheet
Application.ScreenUpdating = False
Set Master = Sheets.Add
Master.Name = "Master"
lastRowMaster = 1

For Each ws In ThisWorkbook.Sheets
    If Left(Trim(ws.Name), 4) = "Data" Then
        lastRow = ws.Range("DH" & Rows.count).End(xlUp).Row
        lastRowMaster = Master.Range("A" & Rows.count).End(xlUp).Row + 1
        ws.Range("DH11:DH" & lastRow).Copy
        Sheets("Master").Range("A" & lastRowMaster).PasteSpecial xlPasteValues
        
    End If
Next
Application.ScreenUpdating = True
MsgBox "Done!"

End Sub
 
Last edited by a moderator:

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Fel123,

Welcome to the Board.

You might consider the following...

Code:
Sub ColumnAMaster()
Dim lastRow As Long, lastRowMaster As Long, i As Long, j As Long
Dim ws As Worksheet, Master As Worksheet
Dim exists As Boolean
Dim Col As Range
Application.ScreenUpdating = False

exists = False
For i = 1 To Sheets.Count
    If Sheets(i).Name = "Master" Then
        Set Master = Sheets("Master")
        exists = True
        Exit For
    End If
Next i

If Not exists Then Sheets.Add.Name = "Master"
lastRowMaster = 1

For Each ws In ThisWorkbook.Sheets
    If Left(Trim(ws.Name), 4) = "Data" Then
        For j = 112 To ws.UsedRange.Columns.Count
            lastRow = ws.Range(Columns(j) & Rows.Count).End(xlUp).Row
            lastRowMaster = Master.Range("A" & Rows.Count).End(xlUp).Row + 1
            ws.Range(Cells(11, Columns(j)), Cells(lastRow, Columns(j))).Copy
            Sheets("Master").Range("A" & lastRowMaster).PasteSpecial xlPasteValues
        Next j
    End If
Next ws
Application.ScreenUpdating = True
MsgBox "Done!"
End Sub

Please note the code is untested.

Cheers,

tonyyy
 
Upvote 0
Hi Tonyyy,

Thanks for your help, really appreciate it!

There was a Run-time error '13': Type mismatch error when I tried running the code.
When debugging, it pointed to this row:

lastRow = ws.Range(Columns(j) & Rows.count).End(xlUp).Row

Is it because it was not able to read columns (j) as for e.g. "DH"?

Cheers,
Felicia
 
Upvote 0
Hi Felicia,

Is it because it was not able to read columns (j) as for e.g. "DH"?

Yes, you're correct... ws.Range is looking for a letter (eg, DH, DI, etc) and not a number. Please try the following...

Code:
Sub ColumnAMaster()
Dim lastrow As Long, lastRowMaster As Long, i As Long, j As Long
Dim ws As Worksheet, Master As Worksheet
Dim exists As Boolean
Dim arr As Variant
Dim Col As String
Application.ScreenUpdating = False

exists = False
For i = 1 To Sheets.Count
    If Sheets(i).Name = "Master" Then
        exists = True
        Exit For
    End If
Next i

If Not exists Then Sheets.Add.Name = "Master"
Set Master = Sheets("Master")
lastRowMaster = 1

For Each ws In ThisWorkbook.Sheets
    If Left(Trim(ws.Name), 4) = "Data" Then
        For j = 112 To ws.UsedRange.Columns.Count
            arr = Split(Cells(1, j).Address(True, False), "$")
            Col = arr(0)
            lastrow = ws.Range(Col & Rows.Count).End(xlUp).Row
            lastRowMaster = Master.Range("A" & Rows.Count).End(xlUp).Row + 1
            ws.Range(ws.Cells(11, Col), ws.Cells(lastrow, Col)).Copy
            Sheets("Master").Range("A" & lastRowMaster).PasteSpecial xlPasteValues
        Next j
    End If
Next ws
Application.ScreenUpdating = True
MsgBox "Done!"
End Sub
 
Upvote 0
The following eliminates one step from the code in post #4 ...

Code:
Sub ColumnAMaster()
Dim lastrow As Long, lastRowMaster As Long, i As Long, j As Long
Dim ws As Worksheet, Master As Worksheet
Dim exists As Boolean
Dim Col As String
Application.ScreenUpdating = False

exists = False
For i = 1 To Sheets.Count
    If Sheets(i).Name = "Master" Then
        exists = True
        Exit For
    End If
Next i

If Not exists Then Sheets.Add.Name = "Master"
Set Master = Sheets("Master")
lastRowMaster = 1

For Each ws In ThisWorkbook.Sheets
    If Left(Trim(ws.Name), 4) = "Data" Then
        For j = 112 To ws.UsedRange.Columns.Count
            Col = Split(Cells(1, j).Address(True, False), "$")(0)
            lastrow = ws.Range(Col & Rows.Count).End(xlUp).Row
            lastRowMaster = Master.Range("A" & Rows.Count).End(xlUp).Row + 1
            ws.Range(ws.Cells(11, Col), ws.Cells(lastrow, Col)).Copy
            Sheets("Master").Range("A" & lastRowMaster).PasteSpecial xlPasteValues
        Next j
    End If
Next ws
Application.ScreenUpdating = True
MsgBox "Done!"
End Sub
 
Upvote 0
Hi Tonyyy,

Thank you, the code worked exactly as needed!!:)
Just curious though , I am trying to understand how this line eventually achieved the letters ( e.g. DH, DI) ...what does this portion of the code (in purple) mean?
Col = Split(Cells(1, j).Address(True, False), "$")(0)
 
Upvote 0
So, assuming j = 112, you know that Cells(1, j).Address will return $DH$1. The $ symbol indicates that both the Column (ie, DH) and Row (ie, 1) are absolute/constant.

Cells(1, j).Address(True, False) is shorthand for Cells(1, j).Address(RowAbsolute:=True, ColumnAbsolute:=False). With ColumnAbsolute set to False, this portion of the code returns DH$1.

The Split function uses the $ symbol as the delimiter and creates the array (DH, 1). And the first item (0) is DH.

Note: Instead of the words (True, False) you could write this even shorter as (1,0)...
Cells(1, j).Address(1, 0)

Thank you, the code worked exactly as needed!!

You're very welcome.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,433
Members
448,897
Latest member
ksjohnson1970

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