Hi Guys,
I have a sheet which is using Autofilter,
People regularly filter the sheet.
What code would i need to use to create a macro which clears all filters? (i would like the autofilter function to remain but for all data to show.
many thanks
Hi Guys,
I have a sheet which is using Autofilter,
People regularly filter the sheet.
What code would i need to use to create a macro which clears all filters? (i would like the autofilter function to remain but for all data to show.
many thanks
Last edited by freud1; 03-02-2010 at 12:02 PM.
You can try with this code:
or with this:![]()
Sub Macro1() On Error Resume Next ActiveSheet.ShowAllData On Error GoTo 0 End Sub
Regards,![]()
Sub Macro2() 'remove filters ActiveSheet.AutoFilterMode = False 'add filters ActiveSheet.Cells.AutoFilter End Sub
Antonio
Thanks Antonio, it worked perfectly, I used the first macro and added it to the open workbook section to auto run on open.
Brilliant!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks