+ Reply to Thread
Results 1 to 3 of 3

Code Optimisation - Run Speed

Hybrid View

  1. #1
    Registered User
    Join Date
    05-07-2013
    Location
    Cheltenham
    MS-Off Ver
    Excel 2007
    Posts
    2

    Code Optimisation - Run Speed

    Hey everybody.

    I have a spreadsheet that simulates mixing across a series of mixed vessels. The equations defining each vessel are connected, creating a circular reference so I have enabled iterative calculation in the workbook.

    The attached code generates data to go into a chart by evaluating each function at time (t) = 0 to 120. Since the output cell is a formula, I used paste special / paste values to get the actual number at each t.

    In essence, the code preforms the Copy / Paste loop 360 times. Is there an alternative method of writing this to speed up the execution of the macro? I can edit the workbook to upload it if necessary.

    Thanks in advance.

    Sub Ratio_Change_I()
    
    Application.ScreenUpdating = False
    
    Dim Initial As Long
    Dim Target As Long
    
    Sheets("Simple").Select
    
    'Define Initial and Target Ratios
    Initial = Range("'Simple'!C23").Value
    Target = Range("'Simple'!C12").Value
    
    'Loop to get Data Points
    For t = 0 To 120
    
        Range("g2").Value = t
        Cells(t + 2, 38).Value = t
        
        Range("I15").Copy
        Cells(t + 2, 39).PasteSpecial Paste:=xlPasteValues, operation:=xlNone, SkipBlanks:=False, Transpose:=False
        
        Range("r35").Copy
        Cells(t + 2, 40).PasteSpecial Paste:=xlPasteValues, operation:=xlNone, SkipBlanks:=False, Transpose:=False
        
        Range("I35").Copy
        Cells(t + 2, 41).PasteSpecial Paste:=xlPasteValues, operation:=xlNone, SkipBlanks:=False, Transpose:=False
    
    Next t
    
    'View Chart of Data Points
    Sheets("Trace").Select
    
    Application.ScreenUpdating = True
    
    End Sub

  2. #2
    Valued Forum Contributor tehneXus's Avatar
    Join Date
    04-12-2013
    Location
    Hamburg, Germany
    MS-Off Ver
    Work: MS-Office 2010 32bit @ Win8 32bit / Home: MS-Office 2016 32bit @ Win10 64bit
    Posts
    944

    Re: Code Optimisation - Run Speed

    try
    Sub Ratio_Change_I()
    
        Application.ScreenUpdating = False
        
        Dim t As Integer
        Dim Initial As Long
        Dim Target As Long
        
        With Sheets("Simple")
            'Define Initial and Target Ratios
            Initial = .Cells(23, 3).Value
            Target = .Cells(12, 3).Value
        
            'Loop to get Data Points
            For t = 0 To 120
                .Cells(2, 7).Value = t
                .Range(.Cells(t + 2, 38), .Cells(t + 2, 41)).Value = Array(t, .Cells(15, 9).Value, .Cells(35, 18).Value, .Cells(34, 9).Value)
            Next t
        End With
        
        'View Chart of Data Points
        Sheets("Trace").Select
        Application.ScreenUpdating = True
    End Sub
    Last edited by tehneXus; 06-01-2013 at 10:01 AM.
    Please use [CODE]-TAGS
    When your problem is solved mark the thread SOLVED
    If an answer has helped you please click to give reputation
    Read the FORUM RULES

  3. #3
    Registered User
    Join Date
    05-07-2013
    Location
    Cheltenham
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Code Optimisation - Run Speed

    Ignore me, teheneXus that's perfect.
    Attached Files Attached Files
    Last edited by swizard; 06-01-2013 at 10:25 AM.

+ 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