Copy & Paste VBA code - Events

Zenwood

Board Regular
Joined
Sep 2, 2017
Messages
67
I have a macro that pulls data from one worksheet, creates a new worksheet and adds a pivot table. I want to add an event handler to the pivot table of the new sheet.

How do I add the event handler code with VBA rather than copying a text file and pasting it to the Pivot Sheet?


Code:
Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
 
'    Header 1
 
Range("B2:C2").Select
 
With Selection.Interior
     .Color = RGB(210, 230, 230)
End With
 
‘ Some more code…
 
End Sub
 
Last edited by a moderator:

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi Zenwood,

Run-time changes can be made to VBA modules using the VBProject.VBComponents property, but I don't recommend doing that since the code will only work if the user has set their macro settings to trust access to the VBA project object.

Trust Center > Macro Settings > check "Trust access to the VBA project object model"

A better alternative would be to add a new sheet by copying a template worksheet that includes your event code. The template sheet can be hidden if you prefer.
 
Upvote 0
I got your suggestion to work. I learned excel has macro templates you can add to an existing worksheet. I learned you can add a pivot table to the imported sheet.

I ran into an error when the event code first accessed the pivot table. For some reason it did not like "Range("B2:C2").Select" or any part of my event macro with Range in it. So I added the code...

Application.EnableEvents = False

before the code created the pivot table and Application.EnableEvents = False after.

Now my worksheet works fine.

Thanks.
 
Upvote 0

Forum statistics

Threads
1,217,346
Messages
6,136,028
Members
449,979
Latest member
trinitybg10

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