Skip to content

Instantly share code, notes, and snippets.

@harsha547
Created June 7, 2017 18:04
Show Gist options
  • Save harsha547/c1765dd735a48fa437620c8bf097946c to your computer and use it in GitHub Desktop.
Save harsha547/c1765dd735a48fa437620c8bf097946c to your computer and use it in GitHub Desktop.
Clear Existing Pivot Table
Public Sub ClearExistingTable()
Dim Piv As PivotTable
For Each Piv In cnPivot.PivotTables
Piv.TableRange2.Clear
Next Piv
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment