I wanted to leave a comment, but I am not allowed to do this. Without sample code, it is very important to understand your problem (see https://stackoverflow.com/help/how-to-ask and edit your question correctly.
Here are some ideas: - Check to see if your code calls the code in another procedure, perhaps the Application.ScreenUpdating application is included outside the procedure. - Try this at the beginning of your procedure:
Application.Calculation = xlCalculationManual
Then at the end of the code, install it:
Application.Calculation = xlCalculationAutomatic
This can help; however, without a code example, it’s very difficult to help you properly.
source
share