I am trying to hide a combo box when the cell value in B57 = FALSE. The ComboBox is called ComboBox1.
I have tried to do conditional formatting - but can't seem to get that to work for the combobox - so I thought I would try to write a simple macro - i wrote the following ....
it didn't work - and besides I would rather it hid the combo box automatically when B57 changed rather than having to click a macro button to trigger the box being hidden
any ideas
thanks
I have tried to do conditional formatting - but can't seem to get that to work for the combobox - so I thought I would try to write a simple macro - i wrote the following ....
Code:
Private Sub Range()
If Range("b57").Value = False Then ComboBox1.Visible = False
End Sub
any ideas
thanks
Comment