Command Buttons

R

Rodney James

In my form I would like to add the buttons

Filter by Form
Filter by Selection
Apply/Remove Filter

Is that possible?

If so how do i do that? Thanks
 
A

Al Camp

Rodney.
DoCmd.RunCommand acCmdFilterByForm
DoCmd.RunCommand acCmdFilterBySelection
DoCmd.RunCommand acCmdRemoveFilterSort
 
Top