Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() -- DBW "Gord Dibben" wrote: Assumptions for this example.................. You have 10 sheets. You have 10 categories. Place category items in D1:D10 Place sheet names in E1:E10 DV dropdown in A1 using D1:D10 as source range. Right-click on the sheet tab and copy/paste this code into that module. Private Sub Worksheet_Change(ByVal Target As Range) Dim isht As Worksheet Dim R As Range Set R = Range("A1") If Intersect(Target, R) Is Nothing Then Exit Sub If Not IsError(Application.Match(Target.Value, _ Me.Range("D1:D10"), 0)) Then isht = Application.VLookup(Target.Value, _ Me.Range("D1:E10"), 2, False) Sheets(isht).Select End If End Sub Pick a category from A1 to select a sheet. Gord On Fri, 6 Mar 2009 06:04:01 -0800, Willco3 wrote: Each category is linked to one sheet and you would like that sheet to be activated for completion once a category is selected from the drop-down menu. Thank you - I'll try it. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Drop Down choice needs to lead to another drop down menu | Excel Discussion (Misc queries) | |||
Drop dwn menu. Formula to count selection frm menu in anoth cell? | Excel Worksheet Functions | |||
Drop down menu and validation over mulitiple sheets | Excel Worksheet Functions | |||
filter dropdown menu so 2nd drop menu is customized | Excel Worksheet Functions | |||
Cross-referenced drop-down menu (nested drop-downs?) | Excel Worksheet Functions |