To replicate that button's functionality you just need to create a macro with "ApplyFilter" as the command line. Or if you're comfortable at all with VBA then just use this code on the "OnClick" of your button:
Private Sub ButtonNameHere_Click()
DoCmd.ApplyFilter "[FieldName] = 'x'"
End Sub
If you give me some more details as to how you want to filter, I can be more specific...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.