Results 1 to 2 of 2

Thread: [RESOLVED] Why does filtering work only once?

  1. #1

    Thread Starter
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,427

    Resolved [RESOLVED] Why does filtering work only once?

    In my code I'm filtering on column "X". In the code below column 'X' is represented by COL_CONCAT. If I open the workbook and run the code it works as expected but if I try it again it doesn't and I have to close and reopen the workbook. How can I correct that?

    Code:
     ' Clear any previous autofiltering
            On Error Resume Next
            .ShowAllData
            On Error GoTo 0
            .Range(.Cells(1, COL_CONCAT), .Cells(lngLastRow1, COL_CONCAT)).AutoFilter Field:=1, Criteria1:="blah"

  2. #2
    PowerPoster jdc2000's Avatar
    Join Date
    Oct 2001
    Location
    Idaho Falls, Idaho USA
    Posts
    2,393

    Re: [RESOLVED] Why does filtering work only once?

    Possibly useful link:

    https://www.extendoffice.com/documen...-workbook.html

    Code:
    Sub Auto_Open()
        Dim xWs As Worksheet
        For Each Wks In ThisWorkbook.Worksheets
        On Error Resume Next
        If Wks.AutoFilterMode Then
            Wks.AutoFilterMode = False
        End If
        Next Wks
    End Sub

Tags for this Thread

Posting Permissions

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



Click Here to Expand Forum to Full Width