How do I create a clear filters button in a form?

X

Xtremist9

Just looking for a way to have a quick way to clear any filters created on a
form. If its a visual basic command please be specific on how I do it
please. :) thanks in advance for any help!

Regards,
Richard Anderson
 
M

Marshall Barton

Xtremist9 said:
Just looking for a way to have a quick way to clear any filters created on a
form. If its a visual basic command please be specific on how I do it
please.


You can turn off the current filter by using:
Me.FilterOn = False

You can clear it with:
Me.Filter = ""

If that's not what you want, please explain what you want in
more detail.
 
B

BobbyBob

How are the filters applied? If they are applied by using the toolbar filter
buttons, then they can be removed using the toolbar buttons.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top