for some reason, this simple code that copies one range from one worksheet to another takes far too long to complete. Is it possible that this is due to the use of a clipboard? Any help would be appreciated.
Application.Calculation = xlCalculationManual
Application.EnableEvents = False
Application.ScreenUpdating = False
With Sheets("Sheet 1")
.range(.range("B4"), .range("Z4").End(xlDown)).copy
End With
Sheets("test").range("B7").PasteSpecial xlPasteValues
Application.CutCopyMode = False
Application.EnableEvents = True
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
End Sub