Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Worksheet Events.
Written by Allen Wyatt (last updated February 6, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365
One of the beauties of creating macros for Excel is that they can be event-driven. This means that you can create macros that will run automatically when specific, well-defined events happen within Excel. These events can happen either on a worksheet or a workbook level.
The easiest way to see what worksheet events are available is to follow these steps:
At this point, the right-hand drop-down list contains all the events that you can "trap" for this worksheet. The available events may vary, according to your version of Excel. The following events are available:
The names of the events should be descriptive enough that you can tell what triggers each of them. If you choose one of the events, you can create the macro you want run when the event actually occurs.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9545) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Worksheet Events.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
If you are getting an error when you try to create an event handler, it could be related to a long-known bug in Excel. ...
Discover MoreWorkbooks can contain macros, or not. It is entirely up to you whether they do or not, but at some future time you might ...
Discover MoreUnprotecting a single worksheet is relatively easy. Unprotecting a whole lot of worksheets is harder. Here's how you can ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2019-07-22 05:47:49
David Robinson
As promised here are a couple of examples.
Example 1: a macro that rescales the chart axis.
We all know that sometimes Excel doesn't scale chart axes for maximum impact. Many a time I create a line chart where all the lines are squished together at the top of the chart because Excel insists on starting the axis at zero, even when this is not selected.
I have written a macro to identify when the pivot table that calculates my chart data updates, and scales my chart to the value in cell "MinAxis", which has a formula to calculate a more appropriate minimum value for my y axis.
The pseudocode for "MinAxis" is =20*FLOOR(IFERROR(MIN(values),0)*0.9/20,1)
Private Sub Worksheet_PivotTableUpdate(ByVal TargetPivotTable As PivotTable)
' Set lower limit of chart Y axis to the calculated figure.
ActiveSheet.ChartObjects("MyChart ").Activate
ActiveSheet.ChartObjects("MyChart").Chart.Axes(xlValue).MinimumScale = ActiveSheet.Range("MinAxis").Value
End Sub
Example 2: a macro to align selections in two different pivot tables.
I find that pivot tables based on different pivot caches can't both be controlled by the same slicer. This macro takes the selections in one pivot table and mirrors them in another, so the user can make selections in both pivot tables from one slicer.
Obviously the pivot tables must both have the same set of possible values, and if this isn't the case you should add a dummy entry to use as a fail safe. Here we see the event trigger checking the pivot table is the right one... without this we'd potentially be firing the event macro for every change we make to the target table!
Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
If Target = ActiveSheet.PivotTables("PivotTable10") Then
AlignPivots
End If
End Sub
Sub AlignPivots()
' This aligns pSummary with pDetail. Piv1 is pSummary: this is our SOURCE. Piv2 is pDetail: this is our TARGET.
Dim Pitem As Integer
Dim Plabel As String
Dim Piv1 As PivotTable, Piv2 As PivotTable
Set Piv1 = Sheets("Items").PivotTables("pSummary")
Set Piv2 = Sheets("Details").PivotTables("pDetail")
' Align Product type. Start by setting any of them to visible, so we never try and make our target pivot table
' show nothing. Process the other entries, setting visible true or false as required, and finally process the
' one I set visible to start with. The choice is random, but let's just do the first entry.
With Piv2.PivotFields("Product type")
.PivotItems(1).Visible = True
For Pitem = 2 To .PivotItems.Count
Plabel = .PivotItems(Pitem).Value
.PivotItems(Pitem).Visible = Piv1.PivotFields("Product type").PivotItems(Plabel).Visible
Next Pitem
Plabel = .PivotItems(1).Value
.PivotItems(1).Visible = Piv1.PivotFields("Product type").PivotItems(Plabel).Visible
End With
' Align Site. Again I start by setting the first one to visible and then mopping up at the end.
With Piv2.PivotFields("Site")
.PivotItems(1).Visible = True
For Pitem = 2 To .PivotItems.Count
Plabel = .PivotItems(Pitem).Value
.PivotItems(Pitem).Visible = Piv1.PivotFields("Site").PivotItems(Plabel).Visible
Next Pitem
Plabel = .PivotItems(1).Value
.PivotItems(1).Visible = Piv1.PivotFields("Site").PivotItems(Plabel).Visible
End With
End Sub
2019-07-22 05:46:08
David Robinson
Sorry to be harsh, but I'm afraid I don't find this tip very useful.
For one thing, the uninitiated possibly won't understand terms such as activate/deactivate, Change or Calculate, and also I'm a bit fuzzy on what FollowHyperlink entails (such as, can you use it in deciding whether or not to follow the hyperlink, or is the hyperlinking a done deal?).
For another, the tip says nothing about scope management. By this, I mean checking that the event trigger is relevant, or in other words, say you want to pick up when cell A1 changes, how do you ensure you only run the macro when this cell changes rather than any other cell? Because without scope, and especially if the macro itself affects anything in the workbook, you could find yourself in a seemingly perpetual loop of nested events, each macro firing the trigger for another. The typical way to check the scope is correct is by using the "if Not Interesct (Target, {A1}) Is Nothing" syntax that readers can Google.
Finally, you don't say why you'd want to do this or give any examples. I will provide a couple of examples in a separate post.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments