Results 1 to 5 of 5

Slow Do While Loop

Threaded View

  1. #1
    Forum Contributor
    Join Date
    12-31-2008
    Location
    UK
    MS-Off Ver
    Excel 2007
    Posts
    149

    Slow Do While Loop

    Hi,

    I have the code below to look at one sheet, and depending on the results, copy the relevant row to the relevant tab. It takes around a minute to run on my PC (checking 1000 rows), and was wondering if there was any way to optimise it? :-

    Do
        Select Case ActiveCell.Text
            Case "KWH"
                LastCol1 = Range("IV3").End(xlToLeft).Column
                CurrentRowPos = ActiveCell.Row
                CurrentColumnPos = ActiveCell.Column
                MyRange = Worksheets("Sheet1").Range(Cells(CurrentRowPos, CurrentColumnPos), Cells(CurrentRowPos, LastCol1))
                Results = WorksheetFunction.Sum(MyRange)
                sumkwh = Format(sumkwh + Results, "0.0")
                ActiveCell.EntireRow.Copy
                Sheets("KWH").Activate
                Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
                ActiveCell.Offset(1, 0).Select
            Case "LEAD"
                LastCol1 = Range("IV3").End(xlToLeft).Column
                CurrentRowPos = ActiveCell.Row
                CurrentColumnPos = ActiveCell.Column
                MyRange = Worksheets("Sheet1").Range(Cells(CurrentRowPos, CurrentColumnPos), Cells(CurrentRowPos, LastCol1))
                Results = WorksheetFunction.Sum(MyRange)
                sumlead = Format(sumlead + Results, "0.0")
                ActiveCell.EntireRow.Copy
                Sheets("Temp").Activate
                Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
                ActiveCell.Offset(1, 0).Select
            Case "LAG"
                LastCol1 = Range("IV3").End(xlToLeft).Column
                CurrentRowPos = ActiveCell.Row
                CurrentColumnPos = ActiveCell.Column
                MyRange = Worksheets("Sheet1").Range(Cells(CurrentRowPos, CurrentColumnPos), Cells(CurrentRowPos, LastCol1))
                Results = WorksheetFunction.Sum(MyRange)
                sumlag = Format(sumlag + Results, "0.0")
                ActiveCell.EntireRow.Copy
                Sheets("Temp").Activate
                Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
                ActiveCell.Offset(1, 0).Select
        End Select
        Sheets("Sheet1").Activate
        ActiveCell.Offset(1, 0).Select
    Loop While ActiveCell.Value <> Empty
    I'd be glad of any ideas as I'm sure this can be done more quickly.

    Thanks in advance!
    Last edited by bd528; 09-12-2010 at 08:33 AM.

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