Pause Macro to allow for editing
Hi all,
Is there a way to pause a macro at a certain point to allow for editing, and then allow the user to resume the macro where it left off?
I'm automating a data-entry process that will return an error message if some of the data is incorrect. What I would like to do is have the program pause, allow the user to change the data on the spreadsheet in front of them, and then resume the macro.
Any ideas?
Use a form instead of msgbox
Instead of using msgbox, pop up a modal form with field to enter the correct data. Code execution is paused until the form is closed.