Show All Records button??

G

Guest

I have a button that sets a filter via a custom query. This will show the
records the user searched for via a Table on a form. My question is: How do
I remove this filter or "Show-All" records again, using another button for
the user?
 
J

John Vinson

I have a button that sets a filter via a custom query. This will show the
records the user searched for via a Table on a form. My question is: How do
I remove this filter or "Show-All" records again, using another button for
the user?

The button's Click event should contain a pair of lines

Me.Filter = ""
Me.FilterOn = False


John W. Vinson[MVP]
 

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