Chris Hoek
New Member
- Joined
- May 28, 2015
- Messages
- 18
- Office Version
- 365
- Platform
- Windows
I want a popup message to appear when a box is checked, but I don't want the message to appear again when that same check box is clicked again to uncheck it.
I'm currently running this code:
Sub CheckBox582_Click()
rsp = MsgBox("Please provide reason for rejection via email or in the comments section below.", vbOKCancel)
If rsp = vbOK Then
Else
MsgBox ("Cancel button")
End If
End Sub
It works perfectly except I don't want the popup message to appear when the check box is unchecked.
Can someone please point me in the right direction?
Thanks a million in advance.
I'm currently running this code:
Sub CheckBox582_Click()
rsp = MsgBox("Please provide reason for rejection via email or in the comments section below.", vbOKCancel)
If rsp = vbOK Then
Else
MsgBox ("Cancel button")
End If
End Sub
It works perfectly except I don't want the popup message to appear when the check box is unchecked.
Can someone please point me in the right direction?
Thanks a million in advance.