A common pivot table question is “How can I create a pivot table from data that’s on separate sheets in my workbook?
Sometime people have a workbook set up with a separate sheet for each region, or for each salesperson.
Eventually, they want to pull all the data together, and create a summary report in a pivot table, from multiple sheets.
Multiple Consolidation Ranges
Excel has a feature (well hidden Excel 2007) that lets you do this, using Multiple Consolidation Ranges.
A pivot table created this way has limited features, and isn’t much use in summarizing Excel data.
I usually recommend that you move all the data onto one worksheet, if it will fit, or store it in a table in Access, then use that as the source for the pivot table.
Create a Union Query
Another solution is to create a Union query from the separate tables, and use that as the source data.

Normal Pivot Table
With this solution, you’ll end up with a normal pivot table, with none of the limitations. However, it’s a bit tedious to set up, especially if you have more than a couple of tables.
Automate the Union Query
Instead of setting this up manually, you can use the code in a sample file from Excel MVPs, Kirill Lapin (KL), with amendments by Héctor Miguel Orozco Diaz. (You might remember Héctor’s innovative Filter Pivot Table Source Data example, posted earlier this year.)
To adjust their sample code to work in your file, you’d replace the sheet names in the CreateConnection code.
To go to the CreateConnection code, right-click on the “Create Empty Table” button, and click Assign Macro, then click Edit.

You can also adjust the location where the pivot table will be added. This line is further down in the CreateConnection code.

After those small changes, save the code changes. Then go back to Excel, click the button on the worksheet, and a summary pivot table will be automatically created.
Download the Sample File
Thanks Kirill and Héctor, for making a complicated task easier. You can download their sample file from the Contextures website: PT0023 – Pivot Table from Multiple Sheets
(Also, please check the update section below, for a newer version of the file)
Update — December 2011
The solution described in this article was created as a conceptual prototype and targeted mainly advanced VBA users. The code has minimal error handling and compatibility checks.
Given the massive response from all kinds of users willing to adopt this solution in their own applications, we would like suggest a similar solution based on ADO.
Advantages:
- No need for temporary file generation
- The code is faster and less prone to errors
Disadvantages:
- No manual refresh of the PivotTable
- Need to rebuild connection from the scratch to update the cache with new data
Download the ADO Sample File
You can download the new ADO version of the file from the Contextures website: PT0024 – Pivot Table from Multiple Sheets – ADO version
Update — August 28, 2012
In the comments below, Kirill posted code that will automatically detect the sheet names. The blog formatting changed his minus sign to a long dash, and also deleted the Less Than Greater Than operator. Here is the correct code, with Kirill’s instructions:
In the code, replace this line:
' Sheets to consolidate
'*****************************************************************************
arrSheets = Array("310_BWATTS_P Pastujova", "310_BWATTS_Maria Sanchez")
'*****************************************************************************
with the following code:
' Sheets to consolidate
'*****************************************************************************
Dim ws As Worksheet
ReDim arrSheets(0)
For Each ws In ThisWorkbook.Worksheets
If ws.Name <> ActiveSheet.Name Then
arrSheets(UBound(arrSheets)) = ws.Name
ReDim Preserve arrSheets(UBound(arrSheets) + 1)
End If
Next ws
ReDim Preserve arrSheets(UBound(arrSheets) - 1)
'*****************************************************************************
________________
I stepped through the code and it seems to error here (on the 5th line)
With PC
.Connection = strCon
.CommandType = xlCmdSql
.CommandText = strSQL
Set PT = .CreatePivotTable(TableDestination:=ActiveSheet.Range(“A1”))
PT.Name = “TestPivot”
End With
Hello Everyone,
The piece of code provided by Kirill to automatically get the sheets has an error. On the first IF-THEN clause and last REDIM statement seems to be where the errors are. I know some people have already asked and didn’t get a response. I will appreciate any help to fix this.
Thanks.
Bert
‘ Sheets to consolidate
‘*****************************************************************************
Dim ws As Worksheet
ReDim arrSheets(0)
For Each ws In ThisWorkbook.Worksheets
If ws.Name ActiveSheet.Name Then
arrSheets(UBound(arrSheets)) = ws.Name
ReDim Preserve arrSheets(UBound(arrSheets) + 1)
End If
Next ws
ReDim Preserve arrSheets(UBound(arrSheets) – 1)
‘*****************************************************************************
@Bertrand, which sample file did you download, and where is snippet of code located in that sample file?
Also, are you using 64-bit Excel 2010 or 32-bit? If 64-bit, there might be a problem with the ODBC drivers.
@Bertrand, thanks, and the corrected code is now at the end of the blog post in the Updated August 28, 2010 section.
@ Debra
Thanks for your response. The sample file I downloaded is the one uploaded for PT0022on 24-Aug-09 . The code (by Kirill) to automatically read in the names of the sheets into the array was posted on this blog. I agree that there’s a problem with the ODBC drivers as I do not see the drivers for xlsx, xlsm, etc listed in the ODBC administrator. I will look into fixing that.
Thanks.
Bert
@Bertrand, Thanks for the details on which sample and code you’re using.
I’ve found the problem, and put the corrected code at the end of the blog post, above. Kirill posted the correct code, but the blog’s formatting messed up a couple of things.
@Debra.
Thanks. We appreciate everything.
Bertrand
Hello,
I would like to know if it’s possible to copy a pivot table from one sheet and paste it into in another sheet such that two pivot tables are not linked i.e. if I create a calculated item in pivot table it doesn’t show as an item in another.
Thanks.
Bertrand
@Bernard, yes you could copy and paste the pivot table, then use programming to create a new pivot cache for it.
@ Debra
Awesome but I will need some help. I am currently using the code you and Kirill provided to consolidate multiple sheets into a pivot table. I created some pivot tables by copying and pasting the empty one created by the code. They all use the same cache now but I would like some of them to have a different cache. I will need your help, if possible.
Thanks.
Bertrand