Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Any idea for having a table with a specific column be filtered as per a
predefined list, instead of selecting each and every entry in the drop down? Thanx in advance. -- Best Regards, Faraz |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Check out the below link for 'Filter Items in a List'
http://www.contextures.com/xladvfilter02.html If this post helps click Yes --------------- Jacob Skaria "Faraz A. Qureshi" wrote: Any idea for having a table with a specific column be filtered as per a predefined list, instead of selecting each and every entry in the drop down? Thanx in advance. -- Best Regards, Faraz |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
For a VBA solution try the below example..
Your data in active sheet..Data range is ColA/ColB A1:B10..Filter criteria range is C1:C3 (with header) Col A Col B Col C Header 1 Header 2 Header 1 a 1 a a 2 b b 3 a 4 b 5 c 6 d 7 e 8 a 9 Sub Macro2() Range("A1:B10").AdvancedFilter Action:=xlFilterInPlace, _ CriteriaRange:=Range("C1:C3"), Unique:=False End Sub If this post helps click Yes --------------- Jacob Skaria "Faraz A. Qureshi" wrote: Any idea for having a table with a specific column be filtered as per a predefined list, instead of selecting each and every entry in the drop down? Thanx in advance. -- Best Regards, Faraz |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
List sort - filter macro based on check box | Excel Discussion (Misc queries) | |||
filter: how to print filter list options in dropdown box | Excel Discussion (Misc queries) | |||
Macro to work list in filter and save (reposted from MPE misc) | Excel Programming | |||
Macro to work list in filter and save | Excel Discussion (Misc queries) | |||
Filter the results of a list based on a previous vlookup against the same list | Excel Worksheet Functions |