Ok, I will clarify things! 
The CheckBox is an ActiveX Control, If I uncheck it manually, it hides row 8 with the following code:
Private Sub CheckBox1_Click()
If Me.CheckBox1.Value = True Then
ActiveSheet.Rows("8:8").Hidden = False
Else
ActiveSheet.Rows("8:8").Hidden = True
End If
End Sub
Now, appart from that, there will be another cell (a dropdownbox) with several values. One of these values is "-" . When this value is selected in this dropdown box, I want Checkbox1 to automatically uncheck so that row 8 will hide.
My question is, how do I refer to the checkbox in the conditional?? Me.CheckBox.Value is not working, and also in which module should it be?
Bookmarks