Hi,
Curious about fastest way to clear data from a range, I created following and resulting output:
Sub testrun()
Dim x As Long
For x = 1 To 3
testtime x
Next x
Debug.Print ""
End Sub
Sub testtime(ByRef testvar As Long)
Dim st As Double
Dim rng As...