+ Reply to Thread
Results 1 to 7 of 7

Refresh Autofilter when data is added?

Hybrid View

  1. #1
    Registered User
    Join Date
    02-04-2014
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    48

    Refresh Autofilter when data is added?

    Hi guys,

    So I have a column, say column A, that I have a auto filter assigned. I would like it to auto-refresh the filter every time I add in data at the end.

    I found this macro, but it only works for changes made within the filter, not if I add in data at the end.

    http://www.ozgrid.com/forum/showthread.php?t=59917

    Private Sub Worksheet_Calculate()

    If Me.FilterMode = True Then
    With Application
    .EnableEvents = False
    .ScreenUpdating = False
    End With

    With ActiveWorkbook
    .CustomViews.Add ViewName:="Mine", RowColSettings:=True
    Me.AutoFilterMode = False
    .CustomViews("Mine").Show
    .CustomViews("Mine").Delete
    End With


    With Application
    .EnableEvents = True
    .ScreenUpdating = True
    End With
    End If

    Please let me know if you guys can help me out!
    Last edited by HC1994; 03-13-2014 at 11:45 AM.

  2. #2
    Forum Contributor
    Join Date
    01-30-2011
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2010
    Posts
    604

    Re: Refresh Autofilter when data is added?

    This includes it in the Autofilter, however I'm assuming that you already have the column filtered and you want to maintain the same filter criteria after the addition. I will investigate how to store the prior criteria as an array.

    Private Sub Worksheet_Change(ByVal Target As Range)
    
        If Not Intersect(Target, Range("A:A")) Is Nothing Then
        
            Dim c1 As Range 'First cell of filtered Range...
            Set c1 = Range("A8")
        
            Dim r1 As Long  'Last row of filtered Range...
            r1 = c1.End(xlDown).Row
        
            Selection.AutoFilter    'Unfiltered...
            ActiveSheet.Range(c1, Cells(r1, 1)).AutoFilter  'Filter new Range...
                
    
        End If
    
    End Sub
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    02-04-2014
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    48

    Re: Refresh Autofilter when data is added?

    Quote Originally Posted by Xx7 View Post
    This includes it in the Autofilter, however I'm assuming that you already have the column filtered and you want to maintain the same filter criteria after the addition. I will investigate how to store the prior criteria as an array.

    Private Sub Worksheet_Change(ByVal Target As Range)
    
        If Not Intersect(Target, Range("A:A")) Is Nothing Then
        
            Dim c1 As Range 'First cell of filtered Range...
            Set c1 = Range("A8")
        
            Dim r1 As Long  'Last row of filtered Range...
            r1 = c1.End(xlDown).Row
        
            Selection.AutoFilter    'Unfiltered...
            ActiveSheet.Range(c1, Cells(r1, 1)).AutoFilter  'Filter new Range...
                
    
        End If
    
    End Sub
    I checked yours and it worked, but it didn't on mine :/ I think it is because in between my rows there are spaces.

    I have attached my file, please see what I am trying to do.
    example.xlsx

    Basically, I have these late trips, and I want to review them with my team in every weekly meeting. When I select a week at the top left corner(with filter), it will bring up a table that has all the information specific for that week.

    Of course, this is a pretty brute-force way to do it, I don't know how to do it more elegantly though :/

  4. #4
    Forum Contributor
    Join Date
    01-30-2011
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2010
    Posts
    604

    Re: Refresh Autofilter when data is added?

    Yes, you are correct. Mine didn't include the spaces. See if this works for you.


    Private Sub Worksheet_Change(ByVal Target As Range)
        If Not Intersect(Target, Range("A:A")) Is Nothing Then
        
            Dim c1 As Range 'First cell of filtered Range...
            Set c1 = Range("A1")
        
            Dim r1 As Long  'Last row of filtered Range...
            r1 = c1.SpecialCells(xlLastCell).Row
        
            Selection.AutoFilter    'Unfiltered...
            ActiveSheet.Range(c1, Cells(r1, 1)).AutoFilter  'Filter new Range...
        End If
    End Sub
    Attached Files Attached Files

  5. #5
    Forum Contributor
    Join Date
    01-30-2011
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2010
    Posts
    604

    Re: Refresh Autofilter when data is added?

    A simpler option would be a pivot table.

    Go to the C7 on the "Pivot" TAB and change the date. Anytime you add new data on the "Data" TAB, just right click the pivot table and select "Refresh". It will be updated automatically.
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    02-04-2014
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    48

    Re: Refresh Autofilter when data is added?

    Quote Originally Posted by Xx7 View Post
    Yes, you are correct. Mine didn't include the spaces. See if this works for you.


    Private Sub Worksheet_Change(ByVal Target As Range)
        If Not Intersect(Target, Range("A:A")) Is Nothing Then
        
            Dim c1 As Range 'First cell of filtered Range...
            Set c1 = Range("A1")
        
            Dim r1 As Long  'Last row of filtered Range...
            r1 = c1.SpecialCells(xlLastCell).Row
        
            Selection.AutoFilter    'Unfiltered...
            ActiveSheet.Range(c1, Cells(r1, 1)).AutoFilter  'Filter new Range...
        End If
    End Sub
    Sweeet! It worked Thanks very much buddy!

  7. #7
    Registered User
    Join Date
    02-04-2014
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    48

    Re: Refresh Autofilter when data is added?

    Quote Originally Posted by Xx7 View Post
    A simpler option would be a pivot table.

    Go to the C7 on the "Pivot" TAB and change the date. Anytime you add new data on the "Data" TAB, just right click the pivot table and select "Refresh". It will be updated automatically.
    Nice option! Thank you, I'll will use this when I am presenting the sheet! Thank you :D

+ 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: 1
    Last Post: 09-28-2013, 07:11 PM
  2. Excel 2007 : Refresh Autofilter
    By nasfric in forum Excel General
    Replies: 1
    Last Post: 08-22-2011, 07:14 PM
  3. Refresh Autofilter
    By kellyfspringer in forum Excel General
    Replies: 5
    Last Post: 07-12-2009, 07:08 PM
  4. Automatically Refresh Autofilter (2007)
    By JayUSA in forum Excel General
    Replies: 3
    Last Post: 06-15-2009, 05:23 AM
  5. Autofilter Refresh Code
    By RhyGuy in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-25-2009, 05:01 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