Hello!
I have a macro in Excel that I wrote. I need it pause to 10 seconds before it executes the next set of code. I am using
This works but seems to freeze the entire application. I have ODBC updates running in the background that need to run while the macro is paused.
Is there an "easy" way to accomplish this?
Thanks!
I have a macro in Excel that I wrote. I need it pause to 10 seconds before it executes the next set of code. I am using
Code:
Application.Wait Now + TimeValue("00:00:10")
This works but seems to freeze the entire application. I have ODBC updates running in the background that need to run while the macro is paused.
Is there an "easy" way to accomplish this?
Thanks!