Created
February 7, 2018 09:19
-
-
Save anonymous/8ff0b381d3827fcc172f8e9c4f5f0b30 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private Sub Worksheet_Change(ByVal Target As Range) | |
If Not Application.Intersect(Range("A2:C20"), Range(Target.Address)) Is Nothing Then | |
ActiveSheet.PivotTables("PivotTable1").PivotCache.Refresh | |
End If | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment