+ Reply to Thread
Results 1 to 2 of 2

Filter Multiple Sheets

Hybrid View

Zulema Filter Multiple Sheets 09-01-2015, 09:25 AM
stnkynts Re: Filter Multiple Sheets 09-01-2015, 10:43 AM
  1. #1
    Registered User
    Join Date
    08-31-2015
    Location
    Managua, Nicaragua
    MS-Off Ver
    2010
    Posts
    1

    Question Filter Multiple Sheets

    How can I filter multiple sheets with an specific value to filter. For example the Country name....

  2. #2
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: Filter Multiple Sheets

    Loop through each worksheet and apply the filter to the specific range for each worksheet. Example:

    Sub Example()
    'Made a lot of assumptions since you gave no actual information
    
    Dim ws As Worksheet
    
    For Each ws In Worksheets
        With ws
            .AutoFilterMode = False
            .Range("A1:A" & .Range("A" & Rows.Count).End(xlUp).Row).AutoFilter 1, "Your Country"
        End With
    Next ws
    
    End Sub
    If you are happy with my response please click the * in the lower left of my post.

+ 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. Macro for same filter, multiple sheets
    By schwincat05 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-24-2014, 08:19 AM
  2. Macro to filter multiple columns of data to multiple work sheets
    By LISSANN in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-10-2014, 07:24 PM
  3. advanced filter - button to re apply advanced filter across multiple sheets
    By motmac87 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-05-2013, 11:16 PM
  4. How do I apply a filter across multiple sheets
    By Dan1956 in forum Excel General
    Replies: 0
    Last Post: 08-07-2012, 09:33 AM
  5. VBA to filter multiple sheets
    By Zimbo in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-25-2008, 12:56 PM
  6. Applying a filter to multiple sheets
    By LemonTwist in forum Excel General
    Replies: 2
    Last Post: 07-15-2008, 04:49 AM
  7. [SOLVED] FILTER ONE MULTIPLE SHEETS
    By ANDRIP in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-14-2005, 10:06 PM

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