I use the following code
>>Sub TESTA()
>>With Worksheets(1)
>>Set k = .Shapes.AddFormControl(xlListBox, 100, 10, 100, 100)
>> For x = 1 To 10
>> k.ControlFormat.AddItem "test" & x
>> Next
>>End With
>>End Sub
wich produce a drop dawn list (test1, test2, ...,test10).
I need help to add code that each time i select a item from the list, the value that i select (e.g "test2") to be copied in cell A1.
many thanks
>>Sub TESTA()
>>With Worksheets(1)
>>Set k = .Shapes.AddFormControl(xlListBox, 100, 10, 100, 100)
>> For x = 1 To 10
>> k.ControlFormat.AddItem "test" & x
>> Next
>>End With
>>End Sub
wich produce a drop dawn list (test1, test2, ...,test10).
I need help to add code that each time i select a item from the list, the value that i select (e.g "test2") to be copied in cell A1.
many thanks