tlc53
Active Member
- Joined
- Jul 26, 2018
- Messages
- 399
Hi there,
Trying to get this code to work but not having much luck. It currently does nothing.
Can anyone see where I am going wrong please? Thank you!
Trying to get this code to work but not having much luck. It currently does nothing.
Can anyone see where I am going wrong please? Thank you!
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target = Range("d8") = 1 Then
ActiveSheet.CheckBoxes("CheckBox34").Visible = False
Else
ActiveSheet.CheckBoxes("CheckBox34").Visible = True
End If
End Sub