Application.OnUndo method (Excel)

Sets the text of the Undo command and the name of the procedure that's run if you choose the Undo command after running the procedure that sets this property.

Syntax

expression.OnUndo (Text, Procedure)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Text Required String The text that appears with the Undo command.
Procedure Required String The name of the procedure that's run when you choose the Undo command.

Remarks

If a procedure doesn't use the OnUndo method, the Undo command is disabled.

The procedure must use the OnRepeat and OnUndo methods last to prevent the repeat and undo procedures from being overwritten by subsequent actions in the procedure.

Example

This example sets the repeat and undo procedures.

Application.OnRepeat "Repeat VB Procedure", _ 
 "Book1.xls!My_Repeat_Sub" 
Application.OnUndo "Undo VB Procedure", _ 
 "Book1.xls!My_Undo_Sub"

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.