Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
All -
I have several macros that each input and parse a lot of data and then format the result. Each takes a long time to run. I watch that hour-glass for a good while, but the macros in the end do successfully run. I've discovered that if after several minutes I do a right-mouse-click that that the macros immediately jump to the next step, which is a user input. So it occurs to me that: one, there's needless idle time going on that I don't know how to find, and two, that if I can "program in" a right-mouse click before the input, I'll be minutes ahead. I apologize for not knowing how to Google this in 10 words or less. Can anyone provide insight into what's going on? ....best, Hash |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
it helps if you post the code
wrote in message news:YQ1Kf.98297$4l5.60542@dukeread05... All - I have several macros that each input and parse a lot of data and then format the result. Each takes a long time to run. I watch that hour-glass for a good while, but the macros in the end do successfully run. I've discovered that if after several minutes I do a right-mouse-click that that the macros immediately jump to the next step, which is a user input. So it occurs to me that: one, there's needless idle time going on that I don't know how to find, and two, that if I can "program in" a right-mouse click before the input, I'll be minutes ahead. I apologize for not knowing how to Google this in 10 words or less. Can anyone provide insight into what's going on? ...best, Hash |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Perhaps calculation is causing the problem - the click could be interrupting
the calculation at the top of the macro try Application.Calculation = xlManual and at the end Application.Calculation = xlAutomatic -- Regards, Tom Ogilvy wrote in message news:YQ1Kf.98297$4l5.60542@dukeread05... All - I have several macros that each input and parse a lot of data and then format the result. Each takes a long time to run. I watch that hour-glass for a good while, but the macros in the end do successfully run. I've discovered that if after several minutes I do a right-mouse-click that that the macros immediately jump to the next step, which is a user input. So it occurs to me that: one, there's needless idle time going on that I don't know how to find, and two, that if I can "program in" a right-mouse click before the input, I'll be minutes ahead. I apologize for not knowing how to Google this in 10 words or less. Can anyone provide insight into what's going on? ...best, Hash |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recording won't record mouse click of add-in app button | Excel Discussion (Misc queries) | |||
Run Macro on Mouse Click | Excel Worksheet Functions | |||
adding macro to right mouse click menu | Excel Discussion (Misc queries) | |||
clicker that advances one number per click in a cell | Excel Discussion (Misc queries) | |||
clicker that advances one number per click in a cell | Excel Worksheet Functions |