Help please excel; when I select a cell that has a drop down box I want it to open
T Tammy Dec 30, 2004 #1 Help please excel; when I select a cell that has a drop down box I want it to open
R RagDyer Dec 30, 2004 #2 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
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
A Andy Brown Dec 30, 2004 #3 Help please excel; when I select a cell that has a drop down box I want it to open Click to expand... 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
Help please excel; when I select a cell that has a drop down box I want it to open Click to expand... 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
T Tammy Dec 31, 2004 #4 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
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
A Andy Brown Dec 31, 2004 #5 I tried 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 Click to expand... Please It works for cell B2, and assumes that B2 has some Data Validation attached to it, and must go in the worksheet module (*not* an ordinary one). For info on worksheet events, see http://www.mvps.org/dmcritchie/excel/event.htm ; for info on DV, start at http://www.contextures.com/xlDataVal01.html Rgds, Andy
I tried 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 Click to expand... Please It works for cell B2, and assumes that B2 has some Data Validation attached to it, and must go in the worksheet module (*not* an ordinary one). For info on worksheet events, see http://www.mvps.org/dmcritchie/excel/event.htm ; for info on DV, start at http://www.contextures.com/xlDataVal01.html Rgds, Andy