I'm toying around with using arrays instead of working in ranges.
Here is a simple array
Sub dotest()
Dim DirArray As Variant
starttime = Timer
DirArray = Range("c:t").Value
For Each x In DirArray
'Debug.Print x
Next
MsgBox Round(Timer - starttime, 2)
End Sub
While I want to load the entire...