+ Reply to Thread
Results 1 to 3 of 3

Auto Unhide all fields

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-13-2008
    Location
    London, England
    MS-Off Ver
    2010
    Posts
    277

    Auto Unhide all fields

    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.

  2. #2
    Forum Expert
    Join Date
    11-23-2005
    Location
    Rome
    MS-Off Ver
    Ms Office 2016
    Posts
    1,628

    Re: Auto Unhide all fields

    You can try with this code:
    Sub Macro1()
        On Error Resume Next
        ActiveSheet.ShowAllData
        On Error GoTo 0
    End Sub
    or with this:
    Sub Macro2()
       'remove filters
        ActiveSheet.AutoFilterMode = False
       'add filters
        ActiveSheet.Cells.AutoFilter
    End Sub
    Regards,
    Antonio

  3. #3
    Forum Contributor
    Join Date
    06-13-2008
    Location
    London, England
    MS-Off Ver
    2010
    Posts
    277

    Re: Auto Unhide all fields

    Thanks Antonio, it worked perfectly, I used the first macro and added it to the open workbook section to auto run on open.

    Brilliant!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1