Excel is frequently giving a "not responding" message when Brian is processing any of several workbooks. He wonders about the best way to diagnose and correct such a problem.
There are a number of things that you could check, but rather than reinvent the wheel here, I'll simply provide some pointers to helpful information. The best place to check may actually be the Microsoft Knowledge Base. There are two articles there that will be helpful. The first article you'll want to check out is this one:
https://support.microsoft.com/en-gb/kb/2758592
The article focuses primarily on elements external to what is in your workbook, each of which can affect how Excel works with your data. If you think the problem may be more with what is inside your workbook (the data itself, how it is formatted, and additional objects), then you'll want to refer to this article:
https://support.microsoft.com/en-us/kb/2735548
Of course, the problem may not be related to your data or external elements at all. If the "not responding" message comes up when you are running a macro, it could be because of the macro itself. If that is the case, you'll want to dust off your debugging skills and figure out if you have a logic error in the macro that is causing it to go into an infinite loop. (What is an infinite loop? A series of steps repeated forever because the conditions that would stop the repetition naturally are never encountered.) If that is the case, you'll need to change the macro to make sure the infinite loop condition doesn't occur.
Of course, it could be that your macro is working as hard as it can and it just takes a long, long time. In cases like this, Excel seems to "turn off" foreground processing (what you see in the workbook) until the macro running in the background is finished.
One way to moderate this a bit is to place a DoEvents command in your macro code. This causes VBA to take a breath and execute any "events" that have built up while it was so busy running code that it ignored everything else. In other words, it causes VBA to allow Excel to "respond," so the "not responding" message doesn't appear.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13435) applies to Microsoft Excel 2007, 2010, 2013, and 2016.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
If you need to change the same data in a large number of workbooks, the task can be daunting. Here are some ideas (and ...
Discover MoreNot satisfied with the way that default workbooks and worksheets look in Excel? You can easily create your own defaults ...
Discover MoreIf you try to open a workbook that someone else has open, Excel lets you know of the conflict. What if Excel tells you, ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-07-13 11:11:28
Jen
both links go to the same place
2016-02-23 17:22:59
Lynda
I have found that if you are doing any manipulating or updating of data that doesn't need to be recalculating all the time, macros run faster if the worksheet is set to manual recalc & have the macro recalculate when necessary. This can make a HUGE difference in time to run a macro.
2016-02-22 10:16:32
Great tip. Thank you very much!
2016-02-20 11:36:40
Allen C
Perfect timing! I was experiencing the "not responding" message while running a complicated sub procedure - that calls two other complicated sub procedures. I inserted the DoEvents command into each of the three sub procedures just after the start of a For Next loop, and the message did not appear. Thanks.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2022 Sharon Parq Associates, Inc.
Comments