+ Reply to Thread
Results 1 to 18 of 18

Excel 2007 : Macro - loop slows down

Hybrid View

  1. #1
    Registered User
    Join Date
    05-19-2010
    Location
    San Diego, California
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: Macro - loop slows down

    Sub SG()
    
    Dim Exp As Excel.Range, Comm As Excel.Range, Premium As Excel.Range
    Dim i As Integer
    
    Set Exp = ThisWorkbook.Sheets("MGN").Range("ER")
    Set Comm = ThisWorkbook.Sheets("MGN").Range("ER")
    Set Premium = ThisWorkbook.Sheets("MGN").Range("ER")
    
    Application.ScreenUpdating = False
    
    ThisWorkbook.Sheets("Input").Range("MacroInput").Value = ""
    ThisWorkbook.Sheets("MGN").Range("ER").ClearContents
    
    
    For i = 1 To Exp.Rows.Count
    
    Application.StatusBar = "Calculating the experience rate for group number " & i & " of " & Exp.Rows.Count
    
    ThisWorkbook.Sheets("Input").Range("MacroInput").Value = ExpRate.Cells(i, 1).Value
    
    ThisWorkbook.Sheets("MGN Detail").Range("ERPasteTarget").Offset(i - 1).Value = ThisWorkbook.Sheets("MGN Detail").Range("ERCopyRange").Value
    
    Next i

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Macro - loop slows down

    ExpRate is undefined.

    As a row variable, i should be declared as a Long, not an Integer.

    You're writing to the statusbar in every loop iteration. You could do it every 10th or 100th iteration.

    If your changes are causing portions of the workbook to recalculate, you should turn calculation off and calculate only whatever portion you need to within the loop.

    You make repeated and unnecessary references to ThisWorkbook, which could be eliminated with a With statement or setting some new object variables.

    You've set the three range variables to the same range -- why?

    So there's a lot you could do, but I can't tell what the whole procedure is doing, so it's hard to be specific.

    How big is range ER?
    Last edited by shg; 05-19-2010 at 05:38 PM.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Macro - loop slows down

    Without seeing the workbook, or knowing if a loop is even necessary, ...
    Option Explicit
    
    Sub SG()
        Dim rExp        As Range
    '    Dim rCom        As Range
    '    Dim rPrm        As Range
        Dim rInp        As Range
        Dim rERC        As Range
        Dim rERP        As Range
    
        Dim iRow        As Long
        Dim nRow        As Long
    
        With ThisWorkbook
            Set rExp = .Worksheets("MGN").Range("ER")
    '        Set rCom = .Worksheets("MGN").Range("ER")
    '        Set rPrm = .Worksheets("MGN").Range("ER")
            Set rInp = .Worksheets("Input").Range("MacroInput")
            Set rERC = .Worksheets("MGN Detail").Range("ERCopyRange")
            Set rERP = .Worksheets("MGN Detail").Range("ERPasteTarget")
        End With
    
        nRow = rExp.Rows.Count
    
        With Application
            .ScreenUpdating = False
            .Calculation = xlCalculationManual
            rInp.ClearContents
    
            For iRow = 1 To rExp.Rows.Count
                If iRow Mod 100 = 0 Then Application.StatusBar = "Row " & iRow & " of " & nRow
                rInp.Value = rExp(iRow, 1).Value
                ' calculate something here if necessary
                rERP.Offset(iRow - 1).Value = rERC.Value
            Next iRow
    
            .ScreenUpdating = True
            .Calculation = xlCalculationAutomatic
        End With
    End Sub
    Last edited by shg; 05-20-2010 at 12:34 PM. Reason: 'calculate' in wrong place

  4. #4
    Registered User
    Join Date
    05-19-2010
    Location
    San Diego, California
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: Macro - loop slows down

           For iRow = 1 To rExp.Rows.Count
                If iRow Mod 100 = 0 Then Application.StatusBar = "Row " & iRow & " of " & nRow
                ' calculate something here if necessary
                rInp.Value = rExp(iRow, 1).Value
                rERP.Offset(iRow - 1).Value = rERC.Value
            Next iRow
    Thank you very much for your suggestions. Is there a way to turn calculations on for a specific range rather then the entire workbook? I'm referring to the third line in the above code.

    Possibly something like:
    ThisWorkbook.Sheets("MGN Detail").Range("ERCopyRange").Calculate

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Macro - loop slows down

    Possibly something like:
    ThisWorkbook.Sheets("MGN Detail").Range("ERCopyRange").Calculate
    That exact syntax will work. It doesn't turn calculation back on for that range, but it does calculate it once with all dependencies. However, what you'd actually do, for the reasons previously described, is
    rERC.Calculate
    See Help for the Calculate method.

  6. #6
    Registered User
    Join Date
    05-19-2010
    Location
    San Diego, California
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: Macro - loop slows down

    Everything seems to run extremely well now. The only issue I am having is that the calculation in the code truncates everything to 2 decimals. Any ideas?

    Thanks.

  7. #7
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Macro - loop slows down

    The code doesn't truncate anything. Change the formatting to General.

+ Reply to Thread

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