https://stackoverflow.com/questions/12391786/effect-of-screen-updating
Sub YourSub() On Error GoTo EH Application.ScreenUpdating = False Application.Calculation = xlCalculationManual Application.EnableEvents = False Application.ScreenUpdating = True Application.Calculation = xlCalculationAutomatic Application.EnableEvents = True End Sub