Excel Automatically Open Dropdown List with Focus / NumLock issue
问题 I have a group of cells in my worksheet that use a data validation list. It works great, but I'd like the list to dropdown automatically when one of these cells gets the focus. I found some code online to make this work. Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range) If Target.Worksheet.Name = "Sheet1" And Target.Column = 1 Then Application.SendKeys ("%{down}") End If End Sub Courtesy of: http://howoffice.com/automatically-open-the-drop-down-list-when-a