For Each Loop in Pivot Table

jmon

New Member
Joined
May 18, 2023
Messages
8
Office Version
  1. 365
Platform
  1. Windows
I am trying to write a for each loop that will run through a pivot table and drill down to one of the values in the pivot table (creating a new tab for each value). Using the info from the sample picture, I am trying to get a drill down from the total for each company (i.e., Company A's total is 78, B's is 119, etc.). I've searched all over and cannot seem to find any code that works in this case (or perhaps that I can understand).

I am able to make this work if I went through and called out each "Bill To" separately, but that won't work as the list changes. I desperately need help figuring out how I can loop through the list and extract a new tab for each "Bill to" by referencing the pivot table itself. Any help would be greatly appreciated.

Here is a snip of the existing code:

Windows("Sample").Activate
ThisWorkbook.Activate
Sheets("Sheet2").Select

Dim PvtTbl As PivotTable
Dim PvtFlds As PivotField
Dim PvtFld As PivotField
Dim Total As PivotField
Dim BillTo As PivotField


Set PvtTbl = Sheets("Sheet2").PivotTables("Pivottable2")
Set BillTo = PvtTbl.PivotFields("Bill To")
Set Total = PvtTbl.PivotFields("Total")

With Sheets("Sheet2").PivotTables("Pivottable2")
Dim d As Variant
On Error GoTo Error
With Sheets("Invoicing").PivotTables("PivotTable3")
d = .GetPivotData("Total", "BillTo")
d = .GetPivotData("Total", "BillTo").Address
Range(d).ShowDetail = True
End With
****perform actions with sheets

Next
End With


Sample.xlsx
DEFGHI
1Row LabelsSum of WigwamCount of WigitSum of ThisSum of ThatSum of Total
2Company A335172178
3Bronze17281142
4Copper815014
5Gold8101018
6Silver01404
7Company B2394420119
8Copper154221052
9Gold24171050
10Silver615017
11Company C80164548235
12Bronze1923436
13Copper9211536
14Gold1831533
15Silver3493034130
16(blank)
17(blank)
18Grand Total1363010689432
Sheet2
 

Attachments

  • 1684467953298.png
    1684467953298.png
    28.1 KB · Views: 4

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hello @jmon.
Welcome to the MrExcel forum. Please accept my warmest greetings and sincere hope that all is well.​

This is what I understand you need:
1)
creating a new tab for each value

2)
drill down from the total for each company (i.e., Company A's total is 78, B's is 119, etc.)

3) Continuing with your example the column of Total (78, 119), is at a displacement of 4 columns with respect to the Company:

1684517347504.png


4) Checking your macro and the minisheet, the pivot table is on sheet "Sheet2"

-------------------
Then try this.
Change the 4 to the column number you want. in this line:
Rich (BB code):
d = pItem.DataRange.Offset(-1, 4).Address

Full macro:
VBA Code:
Sub ForEachPivotTable()
  Dim sh As Worksheet
  Dim PvtTbl As PivotTable
  Dim BillTo As PivotField
  Dim pItem As PivotItem
  Dim d As String
 
  Set sh = Sheets("Sheet2")
  Set PvtTbl = sh.PivotTables("Pivottable2")
  Set BillTo = PvtTbl.PivotFields("Bill To")
 
  For Each pItem In BillTo.PivotItems
    d = pItem.DataRange.Offset(-1, 4).Address
    sh.Range(d).ShowDetail = True
  Next
End Sub

--------------
Let me know the result and I'll get back to you as soon as I can.
Cordially
Dante Amor
--------------​
 
Upvote 0
Hello @jmon.
Welcome to the MrExcel forum. Please accept my warmest greetings and sincere hope that all is well.​

This is what I understand you need:
1)


2)


3)
Continuing with your example the column of Total (78, 119), is at a displacement of 4 columns with respect to the Company:

View attachment 91940

4) Checking your macro and the minisheet, the pivot table is on sheet "Sheet2"

-------------------
Then try this.
Change the 4 to the column number you want. in this line:
Rich (BB code):
d = pItem.DataRange.Offset(-1, 4).Address

Full macro:
VBA Code:
Sub ForEachPivotTable()
  Dim sh As Worksheet
  Dim PvtTbl As PivotTable
  Dim BillTo As PivotField
  Dim pItem As PivotItem
  Dim d As String
 
  Set sh = Sheets("Sheet2")
  Set PvtTbl = sh.PivotTables("Pivottable2")
  Set BillTo = PvtTbl.PivotFields("Bill To")
 
  For Each pItem In BillTo.PivotItems
    d = pItem.DataRange.Offset(-1, 4).Address
    sh.Range(d).ShowDetail = True
  Next
End Sub

--------------
Let me know the result and I'll get back to you as soon as I can.
Cordially
Dante Amor
--------------​
Sorry, it appears I failed to mention that the offset X wouldn't work. The number of lines for each company may vary. In some cases they may have one product (i.e., Gold), in other cases they may have dozens of products.
 
Upvote 0
Sorry, it appears I failed to mention that the offset X wouldn't work. The number of lines for each company may vary. In some cases they may have one product (i.e., Gold), in other cases they may have dozens of products.
Did you try my macro?
My macro works for one data for several data from each company.

This for each is per company, not for each item in the table. In your example, the for each only does 3 readings, company A, B and C. ;)
For Each pItem In BillTo.PivotItems


Check the result and tell me what problem you have.

With the data from your example the macro works fine.

If you have problems with some data, then you should post that example so I can look at it.
 
Upvote 0
Doh - sorry still trying to wrap my head around VBA.

When I attempt to run the code in the sample file I am getting a run-time error 1004: Unable to set the ShowDetail property of the Range class.
 
Upvote 0
As I told you, my macro works with your test data.

If you modified the data or modified the macro, I can't determine why you have an error.

I share my file so you can see how it works.


If you want me to review your data and the operation of the macro, you must share your file.
You could upload a copy of your file to a free site such www.dropbox.com or google drive. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here. If the workbook contains confidential information, you could replace it with generic data.
 
Upvote 0
I still get the same run-time error when running your version (downloaded from the google drive above). I have included an image showing your code and the error here. I have also placed a link to my sample file below. This data is safe to share as it is really just a mock up of the actual report.

Sorry - not trying to make things more difficult,

Google Drive link:
 

Attachments

  • image_2023-05-19_162533457.png
    image_2023-05-19_162533457.png
    65.9 KB · Views: 6
Upvote 0
It is very rare that you have an error. :unsure:
Your sample file works without problem, it creates 4 sheets, one for each company and one empty:

1684530315475.png

1684530436399.png

1684530467961.png

_____________________________________________________​

In which version of Excel are you running the macro?
I can see that in your settings you have 365.

Can someone else test the macro on 365 to see if it's a version issue. 😅
_____________________________________________________​

We do something else.
Activate your macro recorder.
In your pivot table, double click on a cell.
Stop the recorder.
Copy the created code and paste it here.

_____________________________________________________​
 
Upvote 0
It is very rare that you have an error. :unsure:
Your sample file works without problem, it creates 4 sheets, one for each company and one empty:

View attachment 91952
View attachment 91953
View attachment 91954
_____________________________________________________​

In which version of Excel are you running the macro?
I can see that in your settings you have 365.

Can someone else test the macro on 365 to see if it's a version issue. 😅
_____________________________________________________​

We do something else.
Activate your macro recorder.
In your pivot table, double click on a cell.
Stop the recorder.
Copy the created code and paste it here.

_____________________________________________________​
I am running it in 365.

Recording a macro, it shows:

Sub Macro1()
'
' Macro1 Macro
'

'
Range("I2").Select
Selection.ShowDetail = True
End Sub
 
Upvote 0
:unsure: Very weird :unsure:

Try the following change:
VBA Code:
Sub ForEachPivotTable()
  Dim sh As Worksheet
  Dim PvtTbl As PivotTable
  Dim BillTo As PivotField
  Dim pItem As PivotItem
  Dim d As String
  
  Set sh = Sheets("Sheet2")
  Set PvtTbl = sh.PivotTables("Pivottable2")
  Set BillTo = PvtTbl.PivotFields("Bill To")
  
  For Each pItem In BillTo.PivotItems
    sh.Select
    d = pItem.DataRange.Offset(-1, 4).Address
    Range(d).ShowDetail = True
  Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,107
Messages
6,123,126
Members
449,097
Latest member
mlckr

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