Hello,
I am struggling with the code to make my combobox disappear
I want my combobox to appear when N6 = 1. In all other cases, it should disappear.
But my code doesn't work...
Ths is my code:
Private Sub Combobox_visible()
If Range("N6").Value = 1 Then
Me.ComboBox1.Visible = True
Else
Me.ComboBox1.Visible = False
End If
End If
End Sub
See file in attachment
Can someone please help me with this?
Thank you!