+ Reply to Thread
Results 1 to 2 of 2

How to Clear Filters from a Range of Columns within Larger Table

Hybrid View

  1. #1
    Registered User
    Join Date
    10-31-2016
    Location
    San Francisco, California
    MS-Off Ver
    2013
    Posts
    1

    Question How to Clear Filters from a Range of Columns within Larger Table

    Hi all,

    I'm trying to create a macro that will clear the filter of a group of columns (3 through 10) within a table, without needing to have the sheet be active.

    My current solution is rather clumsy, but it works.

    Sub showPhlebs()'
    ' showPhlebs Macro
    '


    '

    Worksheets("Data Calendar").ListObjects("tblDataCalendar").Range.AutoFilter field:=4
    Worksheets("Data Calendar").ListObjects("tblDataCalendar").Range.AutoFilter field:=5
    Worksheets("Data Calendar").ListObjects("tblDataCalendar").Range.AutoFilter field:=6
    Worksheets("Data Calendar").ListObjects("tblDataCalendar").Range.AutoFilter field:=7
    Worksheets("Data Calendar").ListObjects("tblDataCalendar").Range.AutoFilter field:=8
    Worksheets("Data Calendar").ListObjects("tblDataCalendar").Range.AutoFilter field:=9
    Worksheets("Data Calendar").ListObjects("tblDataCalendar").Range.AutoFilter field:=10
    Worksheets("Data Calendar").ListObjects("tblDataCalendar").Range.AutoFilter field:=3, Criteria1:="1"

    End Sub
    I'd like to see if I can figure out a more elegant way to do this, since I have to redo the same thing with a minor change for the other 7 remaining columns.

    Thanks in advance for your help.

  2. #2
    Forum Guru xlnitwit's Avatar
    Join Date
    06-27-2016
    Location
    London
    MS-Off Ver
    Windows: 2010; Mac: 16.13 (O365)
    Posts
    7,085

    Re: How to Clear Filters from a Range of Columns within Larger Table

    Hi,

    You might reduce the code thus
    Sub showPhlebs()'
    ' showPhlebs Macro
    '
    Dim lo as ListObject
    Dim n as long
    Set lo = Worksheets("Data Calendar").ListObjects("tblDataCalendar")
    
    For n = 4 to 10
       lo.Range.AutoFilter field:=n
    Next n
    lo.Range.AutoFilter field:=3, Criteria1:="1"
    
    End Sub
    If you have further columns to apply criteria to, you might use an array of column indices and criteria to loop through.
    Don
    Please remember to mark your thread 'Solved' when appropriate.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 5
    Last Post: 09-04-2016, 07:09 AM
  2. Pivot table - clear filters
    By nativetex in forum Excel Charting & Pivots
    Replies: 0
    Last Post: 03-31-2014, 09:49 PM
  3. [SOLVED] Make an Exception to my clear all pivot table filters
    By doubled191 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-29-2013, 11:37 AM
  4. Macro to clear all filters in a table
    By quantumag in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-07-2013, 05:39 PM
  5. Pivot table protection - Clear All Filters
    By pedrofogao21 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-22-2012, 04:06 PM
  6. Determine Selected Pivot Table Page Range Filters
    By ShredDude in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-01-2010, 05:17 PM
  7. Clear all filters from table
    By Jaymond Flurrie in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-31-2008, 02:31 AM

Tags for this Thread

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