Hi
Is this right? After I added it then when I click the box, the ChrW(1004) text is what shows in the box instead a check mark.
Also, If you can fix this section, please:
If Not Intersect(Target, Range("C8,C14,C20,C26,C32,C38,C41,C44")) Is Nothing Then
When I added this, it does not uncheck the box it is just stay in the box.
This is the original with a single range:
If Target.Address(0, 0) = "C8" Then
Target.Font.Name = "WingDings 1"
Target.Font.Bold = True
Target.Font.ColorIndex = 3
If Target.Value = "" Then
Target.Value = "ChrW(1004)"
'Range("L16").Value = ""
Target.Offset(0, 1).Select
Else
Target.Value = ""
Target.Offset(0, 1).Select
End If
End If
This is where I added more range cells:
If Not Intersect(Target, Range("C8,C14,C20,C26,C32,C38,C41,C44")) Is Nothing Then
'If Target.Address(0, 0) = "C8" Then
Target.Font.Name = "WingDings 1"
Target.Font.Bold = True
Target.Font.ColorIndex = 3
If Target.Value = "" Then
Target.Value = "ChrW(1004)"
'Range("L16").Value = ""
Target.Offset(0, 1).Select
Else
Target.Value = ""
Target.Offset(0, 1).Select
End If
End If
Bookmarks