Speed up spreadsheet

Malcolm torishi

Board Regular
Joined
Apr 26, 2013
Messages
219
Can anyone help please,
I have just added a picture vlookup into by spreadsheet that has now made the spreadsheet run so slow, some times I am waiting up to 15 seconds to move the cursor around the spread sheet. I have in 2 of my 20 or so VBA codes added the following, which did help speed it up but it’s still slow and very frustrating. Does any know how to speed the spreadsheet up back to normal speed
thank you

Application.ScreenUpdating = False
Application.DisplayStatusBar = False
Application.EnableEvents = False

CODE HERE

Application.ScreenUpdating = True
Application.DisplayStatusBar = True
Application.EnableEvents = True
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
I have in 2 of my 20 or so VBA codes added the following
Why not in all 20? That may help speed things up.

Disabling calculations in the same manner until the end of the code will also help speed things up:

Code:
Application.Calculation = xlCalculationManual
...
Application.Calculation = xlCalculationAutomatic
It is not just that, there are other things you can do to speed things up.
In general, you should not be selecting ranges very often in your code. It is usually unnecessary, and slows the code down.
And, you should avoid (or limit) loops, if you can, as loops are resource hogs and will slow the code down.

As to other specifics on speeding up the code, we would need to see your code, and have an understanding of how much data we are dealing with, in order to offer other specific suggestions.
 
Upvote 0
Are you suggesting just the calculation manual and automatic application as above in all my 20 or so other VBA codes only or also include what I have do to 2 of my codes , screen, display and enable applications .
 
Upvote 0
Do all 4 things in all 20 procedures.
 
Last edited:
Upvote 0
You are welcome.

If that doesn't help, then you will need to look at the other things I mentioned.
If you need help with that part, you will need to include the code that is slow, and let us know how much data it is running against.
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,380
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top