Results 1 to 11 of 11

Why is this code slow?

Threaded View

  1. #1
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Why is this code slow?

    For some reason my cursor takes more time to move from cell to cell than I think it should. It is a noticeable time delay.
    I have narrowed it down to the following code.
    It runs from every Worksheet_SelectionChange().
    Sub My_SelectionChange(ByVal Target As Range)
        With Target.Worksheet
            On Error Resume Next
            .Range("Last_Selection_Row").Value = .Range("Selection_Row").Value
            .Range("Last_Selection_Col").Value = .Range("Selection_Col").Value
            .Range("Selection_Row").Value = Target.Row
            .Range("Selection_Col").Value = Target.Column
        End With
    End Sub
    I only notice the slowdown on one worksheet. I'm guessing that it has something to do with my Conditional Formatting. I have lots of cells that change their cell color when the cursor is on their row.

    Is there a faster way to accomplish this?
    Last edited by foxguy; 05-16-2010 at 02:06 PM.

Thread Information

Users Browsing this Thread

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

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