LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default auto dropdown menu

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
select From dropdown and return another dropdown menu RE4379 Excel Discussion (Misc queries) 2 March 11th 10 03:09 PM
filter dropdown menu so 2nd drop menu is customized menugal Excel Worksheet Functions 1 September 4th 07 05:25 PM
Create Dropdown menu without using the Validation on the Data Menu lostinformulas Excel Worksheet Functions 0 July 13th 06 08:47 PM
dropdown menu or Jump menu the dude Excel Discussion (Misc queries) 1 March 26th 06 07:58 PM
Dropdown menu auto recognition? Patty via OfficeKB.com Excel Discussion (Misc queries) 4 August 9th 05 05:30 PM


All times are GMT +1. The time now is 10:54 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"