I would like to paste the value of the selected content in a combobox (form control) to a cell (B12) without having to add a button triggering this event.
Here's my code;
Sub drop_down_16_change()
With Worksheets("Dashboard").Shapes("Drop Down 16").ControlFormat
Worksheets("Dashboard").Range("A12") = .List(.Value)
End With
End Sub
However, it does not work when changing selected item in the dropdownbox, only works when running the script.