Hiding Drop Down menu

  • Thread starter Thread starter Edgar
  • Start date Start date
E

Edgar

I have a drop down menu called Drop Down 4.

What command can I use to hide this in a case select
statement?

TIA
 
Select Case i
Case 1
ActiveSheet.Dropdowns("Drop Down 4").Visible = False
Case Else

End Select
 
Back
Top