I am tring to make my code run faster. I believe the proper technique would be to use a Variant Array. Can you provide me a sample on how to translate the following code into a more efficient Variant Array? Thanks!
Dim i As Long
LastRow = Range("A" & Rows.Count).End(xlUp).Row
For i = 2 To LastRow
If Range("S" & i) > 0.0014 Then
Range("Z" & i, "AA" & i).Copy
Range("AC" & i, "AD" & i).PasteSpecial xlPasteValues
End If
Application.ScreenUpdating = False
Next i