VBA code for selecting from a drop down filter based on criteria in a range.

Peter Muller

Board Regular
Joined
Oct 15, 2018
Messages
133
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I am trying to write the VBA code to do the following.

I want to hide specific rows from a Filter drop down box, based on criteria in a range in a different sheet.

Criteria in Sheet 1 (Parameters), range "B2":"B12"
For each "Y", then select that criteria in sheet 2 (Budget) "B1" - filter
For each "N", then that criteria must not be selected in Budget "B1"

Excel 2016

I get the VBA coding to work when looking at two criteria to select, but it all goes wrong when on the third criteria is “Y”, but the second was “N”

This is what I have:

Code:
Sub Select_Parameters()
'
' Select_POL Macro
'
             
    Sheets("Para").Select
    If Range("H5") = "Y" Then
    Sheets("Budget").Select
    ActiveSheet.Range("$B$1:$B$2979").AutoFilter Field:=1, Criteria1:="=General", _
        Operator:=xlOr, Criteria2:="=POL"
   
   End If
      
    Sheets("Para").Select
    If Range("H5") = "N" Then
    Sheets("Budget").Select
    ActiveSheet.Range("$B$1:$B$2979").AutoFilter Field:=1, Criteria1:="=General"
    
   End If
   
' Select_Rearing Macro
              
    Sheets("Para").Select
    If Range("H6") = "Y" Then
    Sheets("Budget").Select
    ActiveSheet.Range("$B$1:$B$2979").AutoFilter Field:=1, Criteria1:=Array( _
        "General", "POL", "REARING"), Operator:=xlFilterValues
        
   End If
      
    Sheets("Para").Select
    If Range("H6") = "N" Then
    Sheets("Budget").Select
    ActiveSheet.Range("$B$1:$B$2979").AutoFilter Field:=1, Criteria1:=Array( _
        "General", "POL"), Operator:=xlFilterValues
    
   End If
   
   
' Select_Laying Macro
              
    Sheets("Para").Select
    If Range("H7") = "Y" Then
    Sheets("Budget").Select
    ActiveSheet.Range("$B$1:$B$2979").AutoFilter Field:=1, Criteria1:=Array( _
        "General", "POL", "REARING", "LAYING"), Operator:=xlFilterValues
        
   End If
      
    Sheets("Para").Select
    If Range("H7") = "N" Then
    Sheets("Budget").Select
    ActiveSheet.Range("$B$1:$B$2979").AutoFilter Field:=1, Criteria1:=Array( _
        "General", "POL", REARING), Operator:=xlFilterValues
    
   End If
   
End Sub

' NOTE
' Problem is when H6 is "N", I dont know how to not select when i get to H7
' 11 "Y" or "N" Criteria in Parameter Sheet, from H5 to H13
 
Last edited by a moderator:

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
If you put the criteria in sheet Para like


Excel 2013/2016
HI
5DevonY
6DorsetY
7WiltshireN
8SomersetN
9YorkshireN
10KentY
11OxfordshireY
12CumbriaN
13CornwallN
Para


You could then use
Code:
Sub Fltr()
   Dim ary(1 To 9) As Variant
   Dim i As Long, j As Long
   
   With Sheets("Para")
      For i = 5 To 13
         If .Range("I" & i).Value = "Y" Then
            j = j + 1
            ary(j) = .Range("H" & i).Value
         End If
      Next i
   End With
   With Sheets("Budget")
      If .AutoFilterMode Then .AutoFilterMode = False
      .Range("B:B").AutoFilter 1, ary, xlFilterValues
   End With
End Sub
 
Upvote 0
Thank you so much, I am so thankful for your assistance Fluff - I spent three days trying to find a workaround, all to no avail :)

Your code works perfectly fine!
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,803
Members
449,048
Latest member
greyangel23

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