Macro Sheets Only
Equivalent to choosing the Resume button on the Macro toolbar. Resumes a paused macro. Returns TRUE if successful or the #VALUE! error value if no macro is paused. A macro can be paused by using the PAUSE function or choosing Pause from the Single Step dialog box, which appears when you choose the Step button from the Macro dialog box.
Syntax
RESUME(type_num)
Type_num is a number from 1 to 4 specifying how to resume.
Type_num How Microsoft Excel resumes
1 or omitted If paused by a PAUSE function, continues running the macro. If paused from the Single Step dialog box, returns to that dialog box.
2 Halts the paused macro
3 Continues running the macro
4 Opens the Single Step dialog box
Tip You can use Microsoft Excel's ON functions to resume based on an event. For an example, see ENTER.DATA.
Remarks
Related Functions
HALT Stops all macros from running
PAUSE Pauses a macro
RETURN Ends the currently running macro
List of Command-Equivalent Functions