VBA Consolidate Data from Certain Sheets

mike_ogsl

New Member
Joined
Jul 9, 2009
Messages
2
I got a spreadsheet containing purchase information for a number of different contracts, each supplier in column A and the date of purchases in 1st row. I need a means of consolidating only a given range of the sheets into a combined summary, the needed sheets are consecutive and so I came up with the following:

Code:
Sub Consolidation(sstart As String, send As String)
Dim aryShtNames() As Variant
Dim arySource() As String
Dim i As Long
Dim j As Integer
Dim HowManyEntries As Long
Application.ScreenUpdating = False
Sheets(sstart).Select
HowManyEntries = 0
Do
HowManyEntries = HowManyEntries + 1
ReDim Preserve aryShtNames(1 To HowManyEntries)
aryShtNames(HowManyEntries) = ActiveSheet.Name
j = ActiveSheet.Index + 1
Sheets(j).Select
Loop Until ActiveSheet = Sheets(send)
ReDim arySource(LBound(aryShtNames) To UBound(aryShtNames))
For i = LBound(aryShtNames) To UBound(aryShtNames)
arySource(i) = "'[" & fname & ".xls" & "]" _
& aryShtNames(i) & "'!R4C1:R260C78"
Next i
Sheets("Raw Data").Cells("A4").Consolidate Sources:=arySource, Function:=xlSum, _
TopRow:=True, LeftColumn:=True, CreateLinks:=False
Application.ScreenUpdating = True
End Sub

But I get error 438

Any help would be appreciated
 

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.

Forum statistics

Threads
1,215,563
Messages
6,125,572
Members
449,237
Latest member
Chase S

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