Hello,
I have a continuous form with four buttons in the form footer that each activate a line of ApplyFilter, something like:
DoCmd.ApplyFilter , "[Status]=1"
DoCmd.ApplyFilter , "[Status]=2"
...
These buttons work just fine, but I also want to have a button that clears all filters, so I...