Hey Everyone,
I'm somewhat new to VBA (just learned how to use it a few months ago), so any assistance would be appreciated.
I've created some VBA to cycle through risk numbers and copy paste the output for each on a seperate tab. I was hoping you guys could take a look at my code and let me know if there is anything I can do that would reduce run time. My workbook is rating insurance policies, sometimes up to 100,000 risks. Anything that would reduce runtime would be appreciated. Below is the main code, the most time consuming part would be the one For loop.
Sub Main()
Dim W As Integer
Dim Lbl As Single
Sheets("SC UNA").Select
W = Range("V7").Value
Lbl = 0
Application.ScreenUpdating = False
For i = 1 To W
Sheets("SC UNA").Cells(2, 1).Value = i - 1
Sheets("SC UNA").Range("Q39").Copy
Sheets("Rating Examples").Cells(i + 1, 129).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
With Progress
Lbl = i / W
.Frame1.Caption = Format(Lbl, "0%")
.Label2.Width = Lbl * (.Frame1.Width - 7)
.Label4.Caption = i
End With
DoEvents
Next i
Sheets("Summary").Select
Range("G2").Formula = "=IF(COUNTIF($L$3:$L$" & W + 2 & ",A2)>=1,1,0)"
Range("A2:H2").Copy
Range(Cells(2, 1), Cells(W + 1, 8)).PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Range("I4").Formula = "=Max(F2:F" & W + 1 & ")"
Range("I5").Formula = "=Min(F2:F" & W + 1 & ")"
Range("J4").Formula = "=VLOOKUP($I$4,$F$2:$H$" & W + 1 & ",3,False)"
Range("J5").Formula = "=VLOOKUP($I$5,$F$2:$H$" & W + 1 & ",3,False)"
Range("J9").Formula = "=VLOOKUP($J$8,$A$2:$H$" & W + 1 & ",2,False)"
Range("J10").Formula = "=VLOOKUP($J$8,$A$2:$H$" & W + 1 & ",3,False)"
Range("J11").Formula = "=VLOOKUP($J$8,$A$2:$H$" & W + 1 & ",5,False)"
Unload Progress
ActiveWorkbook.RefreshAll
Sheets("Summary").Select
Cells(3, 1).Select
End Sub
Bookmarks