I am creating a Word document that has several buttons associated to a macro. However, once I execute the form button the first time, there isn't any way for me to remove the response provided by the macro and re-execute the button again. So in simpler terms, I have several buttons that when double clicked, provide me with a "Yes" text response. If I delete my Yes response, that button no longer seems to be active, when I double click it, nothing happens.
Do you know if a way to reset the macro buttons or allow me to delete the response provided by the macro button and then re-execute to provide the "Yes" response again?
Here's what I have so far...
Sub Macro1SUM()
'
' Macro1SUM Macro
' When this button is pushed, the form will auto-fill with 1SUM as the selection.
'
Selection.TypeText Text:="1SUM Yes"
End Sub
Sub MacroREDE()
'
' MacroREDE Macro
' When this button is pushed, the form will auto-fill with REDE as the selection.
'
Selection.TypeText Text:="REDE Yes"
End Sub
Sub MacroBoth()
'
' MacroBoth Macro
' When this button is pushed, the form will auto-fill with Both as the selection.
'
Selection.TypeText Text:="Both Yes"
End Sub
Do you know if a way to reset the macro buttons or allow me to delete the response provided by the macro button and then re-execute to provide the "Yes" response again?
Here's what I have so far...
Sub Macro1SUM()
'
' Macro1SUM Macro
' When this button is pushed, the form will auto-fill with 1SUM as the selection.
'
Selection.TypeText Text:="1SUM Yes"
End Sub
Sub MacroREDE()
'
' MacroREDE Macro
' When this button is pushed, the form will auto-fill with REDE as the selection.
'
Selection.TypeText Text:="REDE Yes"
End Sub
Sub MacroBoth()
'
' MacroBoth Macro
' When this button is pushed, the form will auto-fill with Both as the selection.
'
Selection.TypeText Text:="Both Yes"
End Sub