You can display a message box, and the macro won't continue to the next
step until you've responded to it.
For example, if you press OK, Goodby is typed. If you press Cancel, the
macro ends.
Selection.TypeText "Hello." & vbCr
If MsgBox("Say goodby?", vbOKCancel, "Test Macro") = vbOK Then
Selection.TypeText "Goodby."
End If
Larry
Mainlymary said:
Are you able to create a macro in Word that, when you run it, it will
stop and wait for an entry from the user and then continue to run? I
have done this in other word processors, but can't find how to do it in
Word. Thanks bunches.