• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

drop down run macros

I am working with that code
[Sub DropDown1_tameio()
Dim a As ControlFormat
Set a = Sheet2.Shapes("Drop Down 2").ControlFormat
Select Case a.Value
Case 2: Application.Goto Worksheets("sheet").Range("A1")
Case 3: macro1
End Select
End Sub]

case 2 is just a hyperlink to move between sheets and cells
case 3 is a call of macro

is there any way to put yes or no before case 3 so when it is to run a macro to ask for confirmation?
 
Back
Top