Aggregating Data with Same Column Header from multiple sheets into one

chails93

New Member
Joined
May 8, 2018
Messages
1
Hi!

So I have a data dump from two separate applications that are identically formatted... there are 20 columns in each sheet with the same headers, and I need to create a command button that will allow me to aggregate those two sheets into one sheet. The Data from sheet number one titled "Data EAST" should be copied first, followed by the data from sheet number two titled "Data WEST".

Im sure this is pretty rudimentary for most VBA users, but im a newbie and need some help!

Thanks
conor
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hello Conor,

See if the following code works for you:-

Code:
Sub Consolidate()

Dim ws As Worksheet, sh As Worksheet
Set sh = Sheets("Main")

Application.ScreenUpdating = False

sh.UsedRange.Offset(1).ClearContents

For Each ws In Worksheets
If ws.Name <> "Main" Then
      ws.UsedRange.Offset(1).Copy
           sh.Range("A" & Rows.Count).End(3)(2).PasteSpecial xlValues
      End If
Next ws

Application.CutCopyMode = False
Application.ScreenUpdating = True

End Sub

The code assumes:-

- Row 1 in each sheet has headings, starting in Column A.
- Data starts in row 2, Column A.

Change Sheets("Main") to whatever the name of your destination sheet is.

I hope that this helps.

Cheerio,
vcoolio.
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

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