Re: Need for Speed
Hi,
Probably won't have a huge impact but you could try switching off Screenupdating and switching Calculation to manual at the start of the routine and then switch back again at the end.
Code
With Application
.ScreenUpdating = False
.Calculation = xlCalculationManual
End With
'
'Your code
'
With Application
.Calculation = xlCalculationAutomatic
.ScreenUpdating = True
End With
Display More
You could also declare the appropriate types for your FSO objects rather than leaving them as Variants (every little helps!)