Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you select the cell and hit alt-downarrow, you'll see the list.
So you may be able to do something like: Option Explicit Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Cells.Count 1 Then Exit Sub If Intersect(Target, Me.Range("c1,e4")) Is Nothing Then Exit Sub Application.SendKeys "%{down}" End Sub I just checked C1 and E4, but you can change that to whatever cells have dropdown validation. damorrison wrote: Hi, Is there a way to drop down the menu as soon as the cell is activated? right now my menus are through data valadation, if I have to use another way that will be ok! in the long run, it will pay off... Dave -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
select From dropdown and return another dropdown menu | Excel Discussion (Misc queries) | |||
filter dropdown menu so 2nd drop menu is customized | Excel Worksheet Functions | |||
Create Dropdown menu without using the Validation on the Data Menu | Excel Worksheet Functions | |||
dropdown menu or Jump menu | Excel Discussion (Misc queries) | |||
Dropdown menu auto recognition? | Excel Discussion (Misc queries) |