Results 1 to 10 of 10

Filter Code is really slow, please Help...

Threaded View

  1. #1
    Registered User
    Join Date
    11-05-2011
    Location
    Missouri
    MS-Off Ver
    Office 2010, VBA 7.0
    Posts
    75

    Talking Filter Code is really slow, please Help...

    Hello,

    And thank you in advance...

    I have a small issue with my Filter vba code. What I am trying to do is compare one worksheet column with another worksheet column and if any of the 1st worksheet column values are not found in the 2nd worksheet column those rows in the 1st worksheet will be hidden.

    Now I believe the coding works, but it is just to darn slow, and the screen flickers (Im using screenupdating.false as well) and it even goes black, not sure why? Any help would be appreciated.

    ***Correction: This code does not infact work, when it is ran it just hides all rows with values in them. So I am going to need some help here if anyone could spare some of their knowledge.

    Thank You

    My code:

    <code>

    Sub FilterSheet()
    Dim x As Integer
    x = 2
    Application.ScreenUpdating = False
    Do While Cells(x, 9) <> ""
    If Worksheets("Sheet1").Cells(x, 9).Value = Worksheets("Sheet2").Cells(x, 6).Value Then
    Else
    Worksheets("Sheet1").Rows(x).Hidden = True
    End If
    x = x + 1
    Loop
    Application.ScreenUpdating = True
    End Sub

    <code>
    Last edited by lanziniad; 12-14-2011 at 05:35 PM. Reason: Code doesn't work

Thread Information

Users Browsing this Thread

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

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