One slicer to change another slicer

iggydarsa

Well-known Member
Joined
Jun 28, 2005
Messages
1,780
Office Version
  1. 2019
Platform
  1. Windows
Hi All,
I have two tables with slicers with similar data layout on separate sheets.

When I select an option on one slicer I want the same option to be selected on the other slicer.

I came up with this code but not sure on what event it should be triggered:
VBA Code:
Sub Macro1()
    ActiveWorkbook.SlicerCaches("Slicer2").SlicerItems("Earth").Selected = ActiveWorkbook.SlicerCaches("Slicer1").SlicerItems("Earth").Selected
    ActiveWorkbook.SlicerCaches("Slicer2").SlicerItems("Fire").Selected = ActiveWorkbook.SlicerCaches("Slicer1").SlicerItems("Fire").Selected
    ActiveWorkbook.SlicerCaches("Slicer2").SlicerItems("Water").Selected = ActiveWorkbook.SlicerCaches("Slicer1").SlicerItems("Water").Selected
    ActiveWorkbook.SlicerCaches("Slicer2").SlicerItems("Air").Selected = ActiveWorkbook.SlicerCaches("Slicer1").SlicerItems("Air").Selected
End Sub

If I assign this macro on the click event of the slicer it doesn't let me select any options.

Thanks!!
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.

Forum statistics

Threads
1,214,968
Messages
6,122,509
Members
449,089
Latest member
RandomExceller01

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