Hi
I'm trying to create a procedure to hide a number of checkboxes based on if column A is empty or not. So if for a single check box I've used
>>> use code - tags <<<
I would like to loop through rows (11 to 62) and hide/show the checkboxes in those rows.
Thanks for any help.
I'm trying to create a procedure to hide a number of checkboxes based on if column A is empty or not. So if for a single check box I've used
>>> use code - tags <<<
Code:
If Range("A11").Value = "" Then
ActiveSheet.CheckBoxes("Check Box 2").Visible = False
Else
ActiveSheet.CheckBoxes("Check Box 2").Visible = True
End If
Thanks for any help.
Last edited by a moderator: