VBA to filter a table based on selected cell

cee_real

New Member
Joined
Mar 31, 2016
Messages
8
Hello,

I need a VBA to filter a table based on a selection from a dropdown on cell G5. The table is on the same sheet and the filter is on the second column of the table. The table is titled "Table35"

For example, I want to select "Monday" from the drop down on cell G5. Then, the table35 below will filter for only rows that say "Monday"
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Try this code:

Code:
Sub foo()    With Sheet1
        .ListObjects("Table35").Range.AutoFilter Field:=2, Criteria1:=.Range("G5").Value
    End With
End Sub

Change "Sheet1" to appropriate sheet name. Hope it helps.
 
Upvote 0
In the sheet's module:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Address = "$G$5" Then
        Me.ListObjects("Table35").Range.AutoFilter Field:=2, Criteria1:=Target.Value
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,028
Members
448,940
Latest member
mdusw

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