[vba] With Application
.Calculation = xlCalculationManual
.ScreenUpdating = False
.EnableEvents = False
.DisplayAlerts = False
.Cursor = xlWait
.StatusBar = StatusBarMsg
.EnableCancelKey = xlErrorHandler
End With [/vba] How does .Cursor = xlWait help speed up the code? I'm familiar with the rest.
BTW, I didn't know there was a .Cursor property...neat!