"Consolidate multiple worksheets into one master sheet"

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
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,223,712
Messages
6,174,031
Members
452,542
Latest member
Bricklin

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