I have a filter that is applied on the click of a command button. If you click the button to remove the filter and show all records and then choose to do another filter with a different location you get the same data as the first time is there something I need to do duifferently
I have included the code for both the apply filter and the show all records
Apply
[code=vb]
DoCmd.ApplyFilt er "fltr_drawingsi te", ""
Me!Floor.Requer y
[/code]
[Code=vb]
Me.FilterOn = False
Me!Combo48 = ""
[/code]
Clearing the filter seems to be working
I have included the code for both the apply filter and the show all records
Apply
[code=vb]
DoCmd.ApplyFilt er "fltr_drawingsi te", ""
Me!Floor.Requer y
[/code]
[Code=vb]
Me.FilterOn = False
Me!Combo48 = ""
[/code]
Clearing the filter seems to be working
Comment