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
Bookmarks