Sub GoToDemo() userName = InputBox("Enter Your Name: ") If userName <> "123" Then GoTo WrongName MsgBox ("Welcome Bill...")' ...[More code here] ... Exit SubWrongName: MsgBox "Sorry."End Sub