The below code is causing my code to bog down for about 15 seconds while it's running. Does anyone have any suggestions that would speed this up?
Thanks,
Range("Test_Range").Offset(1, 1).Activate
Do Until ActiveCell.Offset(0, -1) = ""
If ActiveCell.Value <= 0.01 Then
Range(Cells(ActiveCell.Row, 1), Cells(ActiveCell.Row, 8)).Delete Shift:=xlUp
ActiveCell.Offset(-1, 0).Activate
Else
End If
ActiveCell.Offset(1, 0).Activate
Loop