drop down box to open when selected

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Help please excel; when I select a cell that has a drop down box I want it to
open
 
Look here at Debra Dalgleish's web page on the subject:

http://www.contextures.com/xlDataVal01.html
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================

Help please excel; when I select a cell that has a drop down box I want it
to
open
 
Help please excel; when I select a cell that has a drop down box I want it
to

Try some code in the worksheet module (rightclick the sheet tab & "View
Code"):

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address <> "$B$2" Then Exit Sub
SendKeys "%{DOWN}"
End Sub
 
I tryied this but it did not work I'm sure I've done something wrong. I
pasted the formula in visual basic and saved would that be it? Help Please
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top