How to Make a "Clear All Filters" button?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to add a button to my form that would clear all filters that
have been applied to the form.

Is this possible?

Thanks!
Bryan
 
I would like to add a button to my form that would clear all filters that
have been applied to the form.

Is this possible?

Thanks!
Bryan

There is no need to 'clear' filters.
All you need do is turn the filter off.

Code a Command button cliock event:
Me.FilterOn = False
 
Back
Top