Combobox Filter

  • Thread starter umalila14 via AccessMonster.com
  • Start date
U

umalila14 via AccessMonster.com

I added a combobox to filter from, when I first open the form, I see all the
records and then I can use the combobox to filter by the selection I have
chosen. What can I add/do to go back to view all the records? I tried
adding the remove filter command but that doesn't work. Any suggestions?
 
J

Jeanette Cunningham

Hi,
add a button to clear the filter.
Code the button's click event like this:

Me.FilterOn = False

Jeanette Cunningham
 
Top