Excel 2010 on Windows 7-VBA Not Responding

MikeDBMan

Well-known Member
Joined
Nov 10, 2010
Messages
610
I recently was upgraded from Windows XP to Windows 7 and run Excel 2010. I have a fairly involved macro that modifies tables quite a bit. Oftentimes the macro seems to take a long time and if I click on the VBA window, it will fade out severely and the title gets (Not responding) added. It always seems to EVENTUALLY "come back" but this is quite annoying and I can't figure out how to prevent it. I start the program with:

Code:
Application.DisplayAlerts = False
Application.ScreenUpdating = False
Application.EnableEvents = False
Application.Cursor = xlWait
With Application
    .Calculation = xlManual
    .MaxChange = 0.001
End With

But it still happens. Suggestions?
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Mike

Could it be happening because you start the code like that?
 
Upvote 0
I do not think so. I turn those things off to help it run faster and have done so for years with no ill-effects.
 
Upvote 0

Forum statistics

Threads
1,224,559
Messages
6,179,513
Members
452,921
Latest member
BBQKING

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