So I've got some simple error coding On Error GoTo Help
Exit Sub
Help: resp = MsgBox "Sorry for the error! Would you like to see the help menu?", vbyesno
if resp = vbyes then Call userform17
if resp = vbno then exit sub
End if
End Sub
Anyway, I'd like to have a button in userform17 that...