Filter based on cell value from another worksheet

thedeadzeds

Active Member
Joined
Aug 16, 2011
Messages
451
Office Version
  1. 365
Platform
  1. Windows
Hi Guys,

Is there a way to use the auto filter based on a cell value from another sheet.

I would like to filter column P in the "Data" worksheet based on the cell value in G1 in the "Main" worksheet.

Thanks
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Replace the the word "test" with the actual word in cell G1.

VBA Code:
Sub Create_Autofilter()
    If Worksheets("Main").Range("G1").Value = "test" Then
         Worksheets("Data").Range("P:P").AutoFilter
    End If
End Sub
 
Upvote 0
Slightly modified for error handling:

Again, same as before. Replace the the word "test" with the actual word located in cell G1.

VBA Code:
Sub Create_Autofilter()
If Worksheets("Main").Range("G1").Value <> "test" Then
    MsgBox ("Cell G1 in 'Data' Sheet does not meet the criteria for autofilter!")
    Exit Sub
Else
     If Worksheets("Main").Range("G1").Value = "test" Then
          Worksheets("Data").Range("P:P").AutoFilter
          MsgBox ("Autofilter successfully applied to column P in the 'Data' worksheet.")
     End If
End If
End Sub
 
Upvote 0
Is the data formatted as a table? If so you could try adding a slicer to apply the filter from another sheet.
 
Upvote 0

Forum statistics

Threads
1,223,237
Messages
6,170,924
Members
452,366
Latest member
TePunaBloke

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