November 3rd, 2004, 1:50 pm
I do not think that a dropdown box is an object that can be "seen" in VBA.However, the worksheet is:In the VBA Editor, select Sheet1, click the left downbutton and select 'Worksheet', and the right downbutton click Change and the following Private Sub appears. All you have to do is add my lines of text. Assume the dropdown box is at C3Private Sub Worksheet_Change(ByVal Target As Range))If Target.Address = "$C$3" Then Sheets("Sheet2").Cells(1, 1).Value = Target.TextEnd IfEnd SubHow's that?
Last edited by
GEL on November 2nd, 2004, 11:00 pm, edited 1 time in total.