Removing Autofilter Without Resetting All Filters

AJLS

New Member
Joined
Sep 14, 2023
Messages
21
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I'm hoping this is a straightforward one, I can see anything in the older threads. I have four drop down boxed that will filter and sort the data in the worksheet, on the filters i have "All" as the default. The trouble I am having is that when All is selected it resets the all the filters.

I am looking for a command that will remove the filter when All is selected so that any other active filters will still be applied, my code is below:

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)


If Target.Address = "$B$1" Then
 If Range("B1") = "All" Then
  Range("A7").AutoFilter
  
 Else
  Range("A7").AutoFilter Field:=6, Criteria1:=Range("B1")
  
 End If
End If

If Target.Address = "$B$2" Then
 If Range("B2") = "All" Then
  Range("A7").AutoFilter
 Else
  Range("A7").AutoFilter Field:=10, Criteria1:=Range("B2")
 End If
End If

If Target.Address = "$B$3" Then
 If Range("B3") = "All" Then
  Range("A7").AutoFilter
 Else
  Range("A7").AutoFilter Field:=4, Criteria1:=Range("B3")
 End If
End If

If Range("B4") = "Drawing Priority" Then

Range("A7:U100").Sort Key1:=Range("L7"), Order1:=xlAscending, Header:=xlNo


End If

If Range("B4") = "Tender Priority" Then

Range("A7:U100").Sort Key1:=Range("N7"), Order1:=xlAscending, Header:=xlNo


End If

If Range("B4") = "SIR Priority" Then

Range("A7:U100").Sort Key1:=Range("M7"), Order1:=xlAscending, Header:=xlNo

End If

If Range("B4") = "Quote No." Then

Range("A7:U100").Sort Key1:=Range("A7"), Order1:=xlAscending, Header:=xlNo

End If

If Range("B4") = "Date Arrived" Then

Range("A7:U100").Sort Key1:=Range("E7"), Order1:=xlAscending, Header:=xlNo

End If
If Range("B4") = "Customer" Then

Range("A7:U100").Sort Key1:=Range("B7"), Order1:=xlAscending, Header:=xlNo

End If

Range("A7:FU100").Rows.AutoFit

End Sub

Thanks in advance
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Instead of using:

Code:
Range("A7").AutoFilter

on its own, include the field you want to clear the filter on - e.g.:

Code:
Range("A7").AutoFilter Field:=7
 
Upvote 0
Solution
Instead of using:

Code:
Range("A7").AutoFilter

on its own, include the field you want to clear the filter on - e.g.:

Code:
Range("A7").AutoFilter Field:=7
I've been trying some ridiculous things and it was this simple lol.

Thanks Rory
 
Upvote 0
Glad we could help. :)
 
Upvote 0

Forum statistics

Threads
1,215,136
Messages
6,123,246
Members
449,093
Latest member
Vincent Khandagale

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