How to use Macros to Filter less than or equal to Cell Values

daduffster52

New Member
Joined
Oct 3, 2019
Messages
1
Hello,

I want this Macro to filter off less than or equal to, not just equal to. Also, if one of the cells is blank (B2 or C2) I would like it to show 'all' for that selection, rather than 'none.'

Can anybody help me?

Private Sub Worksheet_Change(ByVal Target As Range)
Set Target = Target.Cells(1, 1)
If Not Intersect(Target, Range("B2")) Is Nothing Then
Range("A4:J500").CurrentRegion.AutoFilter field:=9, Criteria1:="<=Target.Value"
End If
If Not Intersect(Target, Range("C2")) Is Nothing Then
Range("A4:J500").CurrentRegion.AutoFilter field:=10, Criteria1:="<=Target.Value"
End If
End Sub
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try this

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
  If Target.Count > 1 Then Exit Sub
  If Not Intersect(Target, Range("B2, C2")) Is Nothing Then
    If ActiveSheet.AutoFilterMode Then ActiveSheet.AutoFilterMode = False
    If Target = "" Then Exit Sub
    If Target.Address(0, 0) = "B2" Then
      Range("A4:J500").CurrentRegion.AutoFilter field:=9, Criteria1:="<=" & Target.Value
    Else
      Range("A4:J500").CurrentRegion.AutoFilter field:=10, Criteria1:="<=" & Target.Value
    End If
  End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,251
Members
448,556
Latest member
peterhess2002

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