Applying filters based on a clicked cell in a different sheet

Lega88

New Member
Joined
Jun 22, 2021
Messages
1
Office Version
  1. 2019
Platform
  1. Windows
Hi all. I would appreciate your help with the following. I have Sheets 2-6, all with a lot of rows - first three rows in each sheet are frozen and contain the column names. This is also where the filtering is applied (filtering is done in row 3). In column "I" (row 3) the user can manually select an IT component to see the corresponding data rows. There are several different IT components in every Sheet.

In Sheet1 I have all the IT components (from Sheets 2-6) listed in column A. My idea is that the user can go to Sheet1, see which components are present, and by clicking on the component name jump to the Sheet where this component is (one of Sheets 2-6), while also triggering the present filtering in row 3, column "I", based on the clicked component name.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
This might get you started.
Add this code to Sheet1.
Every time a cell is selected in Sheet1, this code will fire.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Target.Value = "XYZ" Then
Worksheet("SomeSheet").Select
Range("SomeCell").Select
End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,078
Latest member
skydd

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