Ok this is probably a simple fix but I just can't see it. I have a Yes/No msg box with the below code. The problem is if you click Yes OR No it follows the No instructions.
Can someone please help me figure out what is wrong?
Can someone please help me figure out what is wrong?
Code:
Private Sub CommandButtonContinue_Click()
Msg = "Scope Estimation must be completed before opening JIRA tickets. Have you already completed Scope Estimation?"
Ans = MsgBox(Msg, vbYesNo)
If Answer = vbNo Then[INDENT]Load UserFormScopeBOLT
UserFormJIRALodging.Hide
UserFormScopeBOLT.Show[/INDENT]
Else[INDENT]Load UserFormJIRABOLT
UserFormJIRALodging.Hide
UserFormJIRABOLT.Show[/INDENT]
End If
End Sub
Last edited: