Event that triggers when create a pivot table

Willmejial

New Member
Joined
Oct 18, 2020
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I want to create a macro that executes when a new pivot table is created. I had all the code that I want to execute, but I couldn´t find any event that triggers the macro when a new pivot table is created. Please help me!
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
If you want the event to be triggered for a specific worksheet, you can use Worksheet_PivotTableUpdate. The event handler must be placed in the code module for the sheet (in the Visual Basic Editor under Project Explorer (Ctrl+R), right-click the sheet, and select View Code).

VBA Code:
Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
    'etc
    '
    '
End Sub

If you want the event to be triggered for any worksheet, you can use Workbook_SheetPivotTableUpdate. The event handler must be placed in the code module for ThisWorkbook (in the Visual Basic Editor under Project Explorer (Ctrl+R), right-click ThisWorkbook, and select View Code).

VBA Code:
Private Sub Workbook_SheetPivotTableUpdate(ByVal Sh As Object, ByVal Target As PivotTable)
    'etc
    '
    '
End Sub

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,214,824
Messages
6,121,784
Members
449,049
Latest member
greyangel23

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