Autofilter from data validation list

Godders199

Active Member
Joined
Mar 2, 2017
Messages
313
Office Version
  1. 2013
Good Afternoon, I am trying to write up a code , find rows in the cases available sheet which match the value in cell c23 on the instructions tab

C23 is a Data Validation list of names, so which ever name is selected, that is the name i want cases available tab to be filtered by. As I have not tried to filter from a data validation list before i wanted to make sure this element works before i move on. Unfortunately the code below errors saying Autofilter method of range class failed.

Can any one point me in the right direction please.

thanks


Sub Source_cases()
Sheets("cases available ").Select
Selection.AutoFilter
ActiveSheet.Range("A:T").AutoFilter Field:=7, Criteria1:=Sheets("Instructions").Range("C23").Value

End Sub
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
I think this should work

Code:
Sheets("cases available ").Columns("A:T").AutoFilter Field:=7, Criteria1:=Sheets("Instructions").Range("C23").Value

I hope this helps./

Ken
 
Upvote 0
Thanks Ken, I had worked out the problem was the worksheet was in table format removing that sorted my problem.

I think this should work

Code:
Sheets("cases available ").Columns("A:T").AutoFilter Field:=7, Criteria1:=Sheets("Instructions").Range("C23").Value

I hope this helps./

Ken
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,840
Members
449,193
Latest member
MikeVol

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