MiceElfandEye
New Member
- Joined
- Dec 19, 2015
- Messages
- 14
I have a drop down menu and corresponding macros for people to navigate around a large workbook, my question is before the macro runs to take them to the appropriate tab can it return the Drop Down to say MENU (essentially returning it to a resting state)
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("b2")) Is Nothing Then
Select Case Range("b2")
Case "Menu 1": Menu
Case "Dashboard": MenuDash
Case "Step 0": MenuStep0
Case " Step 0 Test": Menu0Test
Case " Step 0 etc": MenuStep0etc
End Select
End If
End Sub
This is the truncated version as I thought I'd save everyone from reading a complete list of macros.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("b2")) Is Nothing Then
Select Case Range("b2")
Case "Menu 1": Menu
Case "Dashboard": MenuDash
Case "Step 0": MenuStep0
Case " Step 0 Test": Menu0Test
Case " Step 0 etc": MenuStep0etc
End Select
End If
End Sub
This is the truncated version as I thought I'd save everyone from reading a complete list of macros.