1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13:
Sub MacroStart() Dim myAns As String myAns = MsgBox("Are you sure you want to continue running macro?", vbYesNo + vbInformation, "Continue?") If myAns = vbYes Then 'Continue Running Macro Else 'Stop Running Macro End If End Sub