Patriot2879
Well-known Member
- Joined
- Feb 1, 2018
- Messages
- 1,259
- Office Version
- 2010
- Platform
- Windows
Hi hope you can help, I have the code below for when the check box is clicked it sends an email, but I have just added the uncheck checkbox code, and this now sends 2 emails instead of the 1, 1 for when its checked and an email for when unchecked, can you help please?
Code:
Private Sub CheckBox1_Click()
Range("F8").Value = Range("F8").Value + 1
Worksheets("Handover").Range("H5:P5").Copy Worksheets("Chase").Range("A1")
Call Mail_Selection_Range_Outlook_Body
With ActiveSheet
For Each objX In .OLEObjects
If TypeName(objX.Object) = "CheckBox" Then
If objX.Object.Value = True Then
objX.Object.Value = False
End If
End If
Next
End With
End Sub