In your command button you could issue the following code:
DoCmd.ShowAllRecords
This will remove the filter/sort. Or, you can do this:
Code:
Me.Filter = ""
Me.FilterOn = False
To set another filter do this:
Code:
Me.Filter = "[FieldName] = 'Criteria'"
Me.FilterOn = True
Jaime E. Maccou