"Consolidate multiple worksheets into one master sheet"

Marwan69

Board Regular
Joined
Mar 14, 2018
Messages
80
Hi Gents,

I'm struggling on the above subject guys. Any help!

Many thanks.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
try this...

Code:
  'copy all sheets into 1 master sheet
Sub aCopyAllSheetsInto1()
Dim shtTarg As Worksheet, sht As Worksheet
Dim r As Long, c As Long, s As Long
Dim sCol As String


Sheets.Add
Set shtTarg = ActiveSheet
shtTarg.Name = "Master"


For Each sht In Worksheets
   If sht.Name <> shtTarg.Name Then
        s = s + 1
        sht.Activate
        Range("a1").Select
        
        If s = 1 Then
           ActiveSheet.UsedRange.Select    'keep the header
        Else
            r = ActiveSheet.UsedRange.Rows.Count
            c = ActiveSheet.UsedRange.Columns.Count
            sCol = Chr(64 + c)
            Range("A2:" & sCol & r).Select
        End If
        Selection.Copy
     
        shtTarg.Activate
        If s = 1 Then  'keep header
           Range("A1").Select
        Else
           r = ActiveSheet.UsedRange.Rows.Count
           Range("a" & r + 1).Select
        End If
        
        ActiveSheet.Paste
        Application.CutCopyMode = False
   End If
Next
Set sht = Nothing
Set shtTarg = Nothing
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,409
Messages
6,124,730
Members
449,185
Latest member
ekrause77

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