How to clear all filters in worksheet for all columns

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to know how to write the code for a command button to clear all
filters for a spreadsheet that contains several columns of lists. I want to
click the button and it clear all fitered list back to "all"
 
Thanks for the reply, I will try it.

Don Guillett said:
try
Sub showall()
On Error GoTo away
ActiveSheet.ShowAllData
away:
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(e-mail address removed)
 
Back
Top